From 17b4cabc71546fb08ca7636dfa8cd78c331b21e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hor=C3=A1=C4=8Dek?= Date: Tue, 23 Jul 2019 13:30:05 +0200 Subject: [PATCH] Add syntax highlighting to Config.md It's easier to read... --- docs/Config.md | 10 +++++----- 1 file 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}}' ```