summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitmodules3
m---------.vim/bundle/tagbar-phpctags.vim0
-rw-r--r--.vimrc4
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
diff --git a/.vimrc b/.vimrc
index 2f17add..de0030f 100644
--- a/.vimrc
+++ b/.vimrc
@@ -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