vim-polyglot/after/ftplugin/haskell.vim
2015-07-18 23:05:45 +02:00

14 lines
423 B
VimL

if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'haskell') == -1
" Vim ftplugin file
" Language: Haskell
" Maintainer: Tristan Ravitch
" I don't fully understand what the vim-default ftplugin does, but I do know
" that the three-part comment entry really messes up this indenter (I also
" hate the leading '-'s it puts in on each line). Disable it here.
setlocal comments&
setlocal comments=:--
endif