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