diff options
author | yushyin <yushyin@saga> | 2016-11-27 14:14:40 +0100 |
---|---|---|
committer | yushyin <yushyin@saga> | 2016-11-27 14:14:40 +0100 |
commit | 7c230489dd58711c3fcc019d9680fded385698f6 (patch) | |
tree | a6f9a5ea2100f7c4439e85dd8a8c9119aa354ab8 | |
parent | db8269ef59f847ccdcc216939dabb2bc4a7e7852 (diff) | |
download | dotfiles-7c230489dd58711c3fcc019d9680fded385698f6.tar.gz dotfiles-7c230489dd58711c3fcc019d9680fded385698f6.tar.xz |
Vim: Delete unused plugin tagbar
-rw-r--r-- | vim/ftplugin/haskell.vim | 32 | ||||
-rw-r--r-- | vim/neobundle.toml | 10 |
2 files changed, 0 insertions, 42 deletions
diff --git a/vim/ftplugin/haskell.vim b/vim/ftplugin/haskell.vim index c32ad66..a3ed140 100644 --- a/vim/ftplugin/haskell.vim +++ b/vim/ftplugin/haskell.vim @@ -1,35 +1,3 @@ setl tags+=codex.tags setl omnifunc=necoghc#omnifunc setl 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/neobundle.toml b/vim/neobundle.toml index 9ce2493..a45fa1f 100644 --- a/vim/neobundle.toml +++ b/vim/neobundle.toml @@ -49,16 +49,6 @@ lazy = 1 on_path = '\.ldg$' [[plugins]] -repository = 'majutsushi/tagbar' -lazy = 1 -augroup = 'TagbarSession' -on_cmd = - ['Tagbar' - ,'TagbarToggle' - ,'TagbarOpen' - ,'TagbarOpenAutoClose'] - -[[plugins]] repository = 'vim-scripts/a.vim' lazy = 1 on_ft = ['c', 'cpp'] |