1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-25 12:24:47 +02:00

Add syntax highlighting to Config.md

It's easier to read...
This commit is contained in:
Tomáš Horáček 2019-07-23 13:30:05 +02:00 committed by Jesse Duffield
parent 75db4faf69
commit 17b4cabc71

View File

@ -2,7 +2,7 @@
## Default:
```
```yaml
gui:
# stuff relating to the UI
scrollHeight: 2 # how many lines you scroll by
@ -33,21 +33,21 @@
### Windows:
```
```yaml
os:
openCommand: 'cmd /c "start "" {{filename}}"'
```
### Linux:
```
```yaml
os:
openCommand: 'sh -c "xdg-open {{filename}} >/dev/null"'
```
### OSX:
```
```yaml
os:
openCommand: 'open {{filename}}'
```
@ -56,7 +56,7 @@
for users of VSCode
```
```yaml
os:
openCommand: 'code -r {{filename}}'
```