diff options
Diffstat (limited to 'after/ftplugin/haskell.vim')
-rw-r--r-- | after/ftplugin/haskell.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/after/ftplugin/haskell.vim b/after/ftplugin/haskell.vim index 536e84bb..4b315458 100644 --- a/after/ftplugin/haskell.vim +++ b/after/ftplugin/haskell.vim @@ -1,3 +1,5 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'haskell') == -1 + " Vim ftplugin file " Language: Haskell " Maintainer: Tristan Ravitch @@ -7,3 +9,5 @@ " hate the leading '-'s it puts in on each line). Disable it here. setlocal comments& setlocal comments=:-- + +endif |