-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlazygit_config.yml
84 lines (82 loc) · 1.91 KB
/
lazygit_config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# normal
# color0 #202020
# color1 #ff141d
# color2 #6d9c10
# color3 #bfbf31
# color4 #3a5aa3
# color5 #d182d6
# color6 #28869c
# color7 #737373
# bright
# color8 #939393
# color9 #ff7964
# color10 #68c336
# color11 #cccc7f
# color12 #6f95d8
# color13 #f3b6fb
# color14 #4ea9cc
# color15 #d0d0d0
gui:
showIcons: true
nerdFontsVersion: 3
showBottomLine: false
skipRewordInEditorWarning: true
scrollHeight: 10
mouseEvents: false
mainPanelSplitMode: horizontal
commandLogSize: 8
theme:
activeBorderColor:
- "#6d9c10"
- bold
inactiveBorderColor:
- "#737373"
selectedLineBgColor:
- default
- bold
selectedRangeBgColor:
- reverse
cherryPickedCommitBgColor:
- "#28869c"
cherryPickedCommitFgColor:
- "#202020"
- bold
unstageChangesColor:
- "#ff7964"
branchColors:
'feat': "#6d9c10"
'fix': "#ff141d"
'perf': "#3a5aa3"
'refactor': "#3a5aa3"
'chore': "#3a5aa3"
'docs': "#28869c"
'ci': "#28869c"
'test': "#28869c"
# Non-commit conventional
'issue': "#3a5aa3"
'master': "#d0d0d0"
'main': "#d0d0d0"
authorColors:
'Lim Chun Leng': "#3a5aa3"
'ChunLeng Lim': "#3a5aa3"
'*': "#737373"
keybinding:
universal:
remove: 'x'
optionMenu: '?'
commits:
squashDown: 'J' # Move vim like
markCommitAsFixup: '<c-v>'
customCommands:
- key: 'u'
description: 'unshallow (fetch all branches and log history) for this remote'
context: 'remotes'
command: "git remote set-branches {{.SelectedRemote.Name}} '*'; git fetch --unshallow"
- key: 'p'
description: 'prune branches that no longer exists in the remote'
context: 'remotes'
command: "git remote prune {{.SelectedRemote.Name}}"
- key: '<space>'
description: 'checkout (ignore other worktree)'
context: 'localBranches'
command: "git checkout --ignore-other-worktrees \"{{.SelectedLocalBranch.Name}}\""