diff options
author | Florian Pritz <bluewind@xinu.at> | 2016-06-07 11:02:28 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-06-07 11:02:28 +0200 |
commit | fa83b9f4c293dab8e8c5923cb1d6afe61b3a6ad1 (patch) | |
tree | ac4d6671ef5c9258f8c8c7cd63e1ddb3e3fdf8d0 | |
parent | 9612b1115ce9be268eb643f5675b8a13feec82c6 (diff) | |
download | dotfiles-fa83b9f4c293dab8e8c5923cb1d6afe61b3a6ad1.tar.gz dotfiles-fa83b9f4c293dab8e8c5923cb1d6afe61b3a6ad1.tar.xz |
vim: Add tagbar-phpctags
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | .gitmodules | 3 | ||||
m--------- | .vim/bundle/tagbar-phpctags.vim | 0 | ||||
-rw-r--r-- | .vimrc | 4 |
3 files changed, 7 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules index bd780f1..73bed82 100644 --- a/.gitmodules +++ b/.gitmodules @@ -85,3 +85,6 @@ [submodule ".vim/bundle/vim-ansible-yaml"] path = .vim/bundle/vim-ansible-yaml url = https://github.com/chase/vim-ansible-yaml.git +[submodule ".vim/bundle/tagbar-phpctags.vim"] + path = .vim/bundle/tagbar-phpctags.vim + url = https://github.com/vim-php/tagbar-phpctags.vim.git diff --git a/.vim/bundle/tagbar-phpctags.vim b/.vim/bundle/tagbar-phpctags.vim new file mode 160000 +Subproject 00d12a891482c35e6bd0dd9a8860163322a45da @@ -62,6 +62,9 @@ let g:ycm_extra_conf_globlist = ['~/.ycm_extra_conf.py'] let g:ycm_global_ycm_extra_conf = '~/.ycm_extra_conf.py' let g:tex_flavor='latex' + +let g:tagbar_phpctags_bin='~/git/phpctags/bin/phpctags' +let g:tagbar_phpctags_memory_limit = '512M' " }}} filetype off @@ -91,6 +94,7 @@ Plugin 'shawncplus/phpcomplete.vim' Plugin 'sjl/splice.vim' Plugin 'LaTeX-Box-Team/LaTeX-Box' Plugin 'chase/vim-ansible-yaml' +Plugin 'vim-php/tagbar-phpctags.vim' call vundle#end() syntax on |