diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2015-07-18 23:22:55 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2015-07-18 23:22:55 +0200 |
commit | cf1e53bc39c96b9f5586a68efa118a13c615da13 (patch) | |
tree | eb6c96a71098df7fc2a38df4606f32a3bfcc925e /ftdetect/polyglot.vim | |
parent | 92ab75408df8bff49bb29e113b3cc159d1ac3105 (diff) | |
download | vim-polyglot-cf1e53bc39c96b9f5586a68efa118a13c615da13.tar.gz vim-polyglot-cf1e53bc39c96b9f5586a68efa118a13c615da13.zip |
Changed haskell provider to raichoo/haskell-vim, closes #63
Diffstat (limited to 'ftdetect/polyglot.vim')
-rw-r--r-- | ftdetect/polyglot.vim | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 73860ae7..60307e7d 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -110,6 +110,10 @@ autocmd BufNewFile,BufRead *.haml,*.hamlbars,*.hamlc setf haml autocmd BufNewFile,BufRead *.sass setf sass autocmd BufNewFile,BufRead *.scss setf scss endif +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'haskell') == -1 + +au BufRead,BufNewFile *.hsc set filetype=haskell +endif if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'haxe') == -1 autocmd BufNewFile,BufRead *.hx setf haxe |