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/c.vim | 15 +++++++++++++++ vim/ftplugin/haskell.vim | 33 +++++++++++++++++++++++++++++++++ vim/ftplugin/tex.vim | 4 ++++ 3 files changed, 52 insertions(+) create mode 100644 vim/ftplugin/c.vim create mode 100644 vim/ftplugin/haskell.vim create mode 100644 vim/ftplugin/tex.vim (limited to 'vim/ftplugin') diff --git a/vim/ftplugin/c.vim b/vim/ftplugin/c.vim new file mode 100644 index 0000000..f3f7198 --- /dev/null +++ b/vim/ftplugin/c.vim @@ -0,0 +1,15 @@ +if has('cscope') + if filereadable("cscope.out") + cs add cscope.out + endif + nnoremap [cscope] + nmap [cscope] + nmap [cscope]s :cs find s =expand("") + nmap [cscope]g :cs find g =expand("") + nmap [cscope]c :cs find c =expand("") + nmap [cscope]t :cs find t =expand("") + nmap [cscope]e :cs find e =expand("") + nmap [cscope]f :cs find f =expand("") + nmap [cscope]i :cs find i ^=expand("")$ + nmap [cscope]d :cs find d =expand("") +endif 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' + \ } +\ } diff --git a/vim/ftplugin/tex.vim b/vim/ftplugin/tex.vim new file mode 100644 index 0000000..d3ea831 --- /dev/null +++ b/vim/ftplugin/tex.vim @@ -0,0 +1,4 @@ +nnoremap j v:count ? 'j' : 'gj' +vnoremap j v:count ? 'j' : 'gj' +nnoremap k v:count ? 'k' : 'gk' +vnoremap k v:count ? 'k' : 'gk' -- cgit v1.2.3-24-g4f1b