1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-17 21:18:31 +02:00
lazygit/docs/Config.md

103 lines
1.8 KiB
Markdown
Raw Normal View History

2018-08-18 13:54:39 +10:00
# User Config:
## Default:
```yaml
2018-08-18 13:54:39 +10:00
gui:
# stuff relating to the UI
scrollHeight: 2 # how many lines you scroll by
scrollPastBottom: true # enable scrolling past the bottom
2018-08-18 13:54:39 +10:00
theme:
lightTheme: false # For terminals with a light background
2018-08-18 13:54:39 +10:00
activeBorderColor:
- white
- bold
inactiveBorderColor:
- white
optionsTextColor:
- blue
commitLength:
show: true
2019-11-10 16:20:35 +11:00
mouseEvents: true
2019-02-16 21:01:17 +11:00
git:
merging:
# only applicable to unix users
manualCommit: false
skipHookPrefix: WIP
2019-09-08 11:20:35 +10:00
autoFetch: true
2018-08-26 13:03:37 +10:00
update:
method: prompt # can be: prompt | background | never
days: 14 # how often an update is checked for
2018-08-26 15:46:18 +10:00
reporting: 'undetermined' # one of: 'on' | 'off' | 'undetermined'
2018-09-05 19:56:11 +02:00
confirmOnQuit: false
2018-08-18 13:54:39 +10:00
```
## Platform Defaults:
### Windows:
```yaml
os:
openCommand: 'cmd /c "start "" {{filename}}"'
```
### Linux:
```yaml
os:
2018-09-04 19:18:18 +10:00
openCommand: 'sh -c "xdg-open {{filename}} >/dev/null"'
```
### OSX:
```yaml
os:
openCommand: 'open {{filename}}'
```
### Recommended Config Values:
for users of VSCode
```yaml
os:
openCommand: 'code -r {{filename}}'
```
2018-08-18 13:54:39 +10: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 13:42:17 +10: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 13:42:17 +10:00
## Example Coloring:
![border example](/docs/resources/colored-border-example.png)