2018-08-18 05:54:39 +02:00
# User Config:
2019-12-05 04:35:29 +02:00
Default path for the config file: `~/.config/jesseduffield/lazygit/config.yml`
2018-08-18 05:54:39 +02:00
## Default:
2019-07-23 13:30:05 +02:00
```yaml
2018-08-18 05:54:39 +02:00
gui:
# stuff relating to the UI
scrollHeight: 2 # how many lines you scroll by
2018-11-08 12:35:05 +02:00
scrollPastBottom: true # enable scrolling past the bottom
2018-08-18 05:54:39 +02:00
theme:
2019-10-18 09:48:37 +02:00
lightTheme: false # For terminals with a light background
2018-08-18 05:54:39 +02:00
activeBorderColor:
- white
- bold
inactiveBorderColor:
- white
optionsTextColor:
- blue
2018-09-05 15:02:13 +02:00
commitLength:
show: true
2019-11-10 07:20:35 +02:00
mouseEvents: true
2019-02-16 12:01:17 +02:00
git:
merging:
# only applicable to unix users
manualCommit: false
2019-04-13 05:34:12 +02:00
skipHookPrefix: WIP
2019-09-08 03:20:35 +02:00
autoFetch: true
2018-08-26 05:03:37 +02:00
update:
method: prompt # can be: prompt | background | never
days: 14 # how often an update is checked for
2018-08-26 07:46:18 +02:00
reporting: 'undetermined' # one of: 'on' | 'off' | 'undetermined'
2018-09-05 19:56:11 +02:00
confirmOnQuit: false
2019-12-05 04:18:28 +02:00
keybinding:
universal:
quit: 'q'
quit-alt1: '< c-c > ' # alternative/alias of quit
return: '< esc > ' # return to previous menu, will quit if there's nowhere to return
quitWithoutChangingDirectory: 'Q'
togglePanel: '< tab > ' # goto the next panel
prevItem: '< up > ' # go one line up
nextItem: '< down > ' # go one line down
prevItem-alt: 'k' # go one line up
nextItem-alt: 'j' # go one line down
prevBlock: '< left > ' # goto the previous block / panel
nextBlock: '< right > ' # goto the next block / panel
prevBlock-alt: 'h' # goto the previous block / panel
nextBlock-alt: 'l' # goto the next block / panel
optionMenu: 'x' # show help menu
optionMenu-alt1: '?' # show help menu
select: '< space > '
remove: 'd'
new: 'n'
edit: 'e'
openFile: 'o'
scrollUpMain: '< pgup > ' # main panel scrool up
scrollDownMain: '< pgdown > ' # main panel scrool down
scrollUpMain-alt1: 'K' # main panel scrool up
scrollDownMain-alt1: 'J' # main panel scrool down
scrollUpMain-alt2: '< c-u > ' # main panel scrool up
scrollDownMain-alt2: '< c-d > ' # main panel scrool down
createRebaseOptionsMenu: 'm'
pushFiles: 'P'
pullFiles: 'p'
refresh: 'R'
createPatchOptionsMenu: '< c-p > '
status:
checkForUpdate: 'u'
recentRepos: 's'
files:
commitChanges: 'c'
commitChangesWithoutHook: 'w' # commit changes without pre-commit hook
amendLastCommit: 'A'
commitChangesWithEditor: 'C'
ignoreFile: 'i'
refreshFiles: 'r'
stashAllChanges: 's'
viewStashOptions: 'S'
toggleStagedAll: 'a' # stage/unstage all
viewResetOptions: 'D'
fetch: 'f'
executeCustomCommand: 'X'
branches:
createPullRequest: 'o'
checkoutBranchesByName: 'c'
forceCheckoutBranch: 'F'
rebaseBranch: 'r'
mergeIntoCurrentBranch: 'M'
FastForward: 'f' # fast-forward this branch from its upstream
pushTag: 'P'
nextBranchTab: ']'
prevBranchTab: '['
setUpstream: 'u' # set as upstream of checked-out branch
commits:
squashDown: 's'
renameCommit: 'r'
renameCommitWithEditor: 'R'
resetToThisCommit: 'g'
fixupCommit: 'f'
createFixupCommit: 'F' # create fixup commit for this commit
squashAboveCommits: 'S'
moveDownCommit: '< c-j > ' # move commit down one
moveUpCommit: '< c-k > ' # move commit up one
amendToCommit: 'A'
pickCommit: 'p' # pick commit (when mid-rebase)
revertCommit: 't'
cherryPickCopy: 'c'
cherryPickCopyRange: 'C'
pasteCommits: 'v'
viewCommitFiles: '< enter > '
tagCommit: 'T'
stash:
popStash: 'g'
commitFiles:
checkoutCommitFile: 'c'
main:
toggleDragSelect: 'v'
toggleDragSelect-alt: 'V'
toggleSelectHunk: 'a'
PickBothHunks: 'b'
undo: 'z'
2018-08-18 05:54:39 +02:00
```
2018-09-01 06:35:46 +02:00
## Platform Defaults:
### Windows:
2019-07-23 13:30:05 +02:00
```yaml
2018-09-01 06:35:46 +02:00
os:
openCommand: 'cmd /c "start "" {{filename}}"'
```
### Linux:
2019-07-23 13:30:05 +02:00
```yaml
2018-09-01 06:35:46 +02:00
os:
2018-09-04 11:18:18 +02:00
openCommand: 'sh -c "xdg-open {{filename}} >/dev/null"'
2018-09-01 06:35:46 +02:00
```
### OSX:
2019-07-23 13:30:05 +02:00
```yaml
2018-09-01 06:35:46 +02:00
os:
openCommand: 'open {{filename}}'
```
### Recommended Config Values:
for users of VSCode
2019-07-23 13:30:05 +02:00
```yaml
2018-09-01 06:35:46 +02:00
os:
openCommand: 'code -r {{filename}}'
```
2018-08-18 05:54:39 +02:00
## Color Attributes:
For color attributes you can choose an array of attributes (with max one color attribute)
The available attributes are:
- default
- black
- red
- green
- yellow
- blue
- magenta
- cyan
- white
- bold
- reverse # useful for high-contrast
- underline
2018-08-21 05:42:17 +02:00
2019-10-18 09:52:32 +02:00
## Light terminal theme:
If you have issues with a light terminal theme where you can't read / see the text add these settings
```yaml
gui:
theme:
lightTheme: true
activeBorderColor:
- black
- bold
inactiveBorderColor:
- black
```
2018-08-21 05:42:17 +02:00
## Example Coloring:
![border example ](/docs/resources/colored-border-example.png )
2019-12-05 04:18:28 +02:00
2019-12-05 04:46:00 +02:00
## Keybindings:
For all possible keybinding options, check [Custom_Keybinding.md ](https://github.com/jesseduffield/lazygit/blob/master/docs/keybindings/Custom_Keybinding.md ) < ++>
#### Example Keybindings For Colemak Users:
2019-12-05 04:18:28 +02:00
```yaml
keybinding:
universal:
2019-12-05 04:34:59 +02:00
prevItem-alt: 'u' # go one line up
nextItem-alt: 'e' # go one line down
prevBlock-alt: 'n' # goto the previous block / panel
nextBlock-alt: 'i' # goto the next block / panel
new: 'k'
edit: 'o'
openFile: 'O'
scrollUpMain-alt1: 'U' # main panel scrool up
scrollDownMain-alt1: 'E' # main panel scrool down
scrollDownMain-alt2: '< c-e > ' # main panel scrool down
2019-12-05 04:18:28 +02:00
status:
2019-12-05 04:34:59 +02:00
checkForUpdate: '< c-u > '
2019-12-05 04:18:28 +02:00
files:
2019-12-05 04:34:59 +02:00
ignoreFile: 'I'
2019-12-05 04:18:28 +02:00
commits:
2019-12-05 04:34:59 +02:00
moveDownCommit: '< c-e > ' # move commit down one
moveUpCommit: '< c-u > ' # move commit up one
2019-12-05 04:18:28 +02:00
```
2019-12-05 04:46:00 +02:00