diff options
author | John Ankarström <john@ankarstrom.se> | 2018-10-14 17:51:28 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2018-10-14 17:52:37 +0200 |
commit | 68922d857f75e4a373e4e2273f0c921478609c50 (patch) | |
tree | db28b21e5df86c4afe18ca09bda5d4ab412d82b2 /README.md | |
parent | ff83be22e1d883c9f20222f4bfdccac4b96a9138 (diff) | |
download | vis-filetype-settings-68922d857f75e4a373e4e2273f0c921478609c50.tar.gz |
changed quote style
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,7 +7,7 @@ It expects a global variable called `settings` to be defined: ```lua settings = { - markdown = {'set expandtab on', 'set tabwidth 4'} + markdown = {"set expandtab on", "set tabwidth 4"} } ``` @@ -34,7 +34,7 @@ As a suggestion, copy `vis-filetype-settings.lua` into `~/.config/vis/plugins/` and add the following to your `visrc.lua`: ```lua -require('plugins/vis-filetype-settings') +require("plugins/vis-filetype-settings") settings = { filetype = settings |