From 99f1c17274bcea036aca040642bb8377e95f6fcd Mon Sep 17 00:00:00 2001 From: yushyin Date: Thu, 30 Jul 2015 23:07:17 +0200 Subject: Add vim config --- vim/ftplugin/haskell.vim | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 vim/ftplugin/haskell.vim (limited to 'vim/ftplugin/haskell.vim') diff --git a/vim/ftplugin/haskell.vim b/vim/ftplugin/haskell.vim new file mode 100644 index 0000000..99f0cd7 --- /dev/null +++ b/vim/ftplugin/haskell.vim @@ -0,0 +1,33 @@ +setlocal omnifunc=necoghc#omnifunc ts=8 sts=4 sw=4 et sr + +let g:tagbar_type_haskell = { + \ 'ctagsbin' : 'hasktags', + \ 'ctagsargs' : '-x -c -o-', + \ 'kinds' : [ + \ 'm:modules:0:1', + \ 'd:data: 0:1', + \ 'd_gadt: data gadt:0:1', + \ 't:type names:0:1', + \ 'nt:new types:0:1', + \ 'c:classes:0:1', + \ 'cons:constructors:1:1', + \ 'c_gadt:constructor gadt:1:1', + \ 'c_a:constructor accessors:1:1', + \ 'ft:function types:1:1', + \ 'fi:function implementations:0:1', + \ 'o:others:0:1' + \ ], + \ 'sro' : '.', + \ 'kind2scope' : { + \ 'm' : 'module', + \ 'c' : 'class', + \ 'd' : 'data', + \ 't' : 'type' + \ }, + \ 'scope2kind' : { + \ 'module' : 'm', + \ 'class' : 'c', + \ 'data' : 'd', + \ 'type' : 't' + \ } +\ } -- cgit v1.2.3-24-g4f1b