vim-polyglot/after/ftplugin/haskell.vim

14 lines
423 B
VimL
Raw Normal View History

if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'haskell') == -1
2013-09-12 11:17:14 -04:00
" 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