vim-polyglot/ftplugin/slim.vim

14 lines
239 B
VimL
Raw Normal View History

2016-05-30 19:53:12 -04:00
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'slim') == -1
if exists("b:did_ftplugin")
finish
endif
let b:did_ftplugin = 1
let b:undo_ftplugin = "setl isk<"
setlocal iskeyword+=-
2016-06-17 14:47:16 -04:00
setlocal commentstring=/%s
2016-05-30 19:53:12 -04:00
endif