summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorTomáš Horáček <tomas.horacek@gmail.com>2019-07-23 13:30:05 +0200
committerJesse Duffield <jessedduffield@gmail.com>2019-07-27 10:48:30 +1000
commit17b4cabc71546fb08ca7636dfa8cd78c331b21e3 (patch)
tree748864d731024d8cb62533cb48c84f1a38fe0ba0 /docs
parent75db4faf69f5eaf130fe18ec4444a3086e4aef22 (diff)
Add syntax highlighting to Config.md
It's easier to read...
Diffstat (limited to 'docs')
-rw-r--r--docs/Config.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/Config.md b/docs/Config.md
index bfc4b2186..7920cc96b 100644
--- a/docs/Config.md
+++ b/docs/Config.md
@@ -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}}'
```