diff options
Diffstat (limited to 'ftplugin/i3config.vim')
-rw-r--r-- | ftplugin/i3config.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ftplugin/i3config.vim b/ftplugin/i3config.vim index 41de3247..f5451e80 100644 --- a/ftplugin/i3config.vim +++ b/ftplugin/i3config.vim @@ -1,5 +1,3 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'i3') != -1 - finish -endif - +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'i3') == -1 setlocal commentstring=#\ %s +endif |