summaryrefslogtreecommitdiffstats
path: root/after/ftplugin/haskell.vim
blob: 4b31545805cf8b407f58597a06616a087f937176 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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