[vimrc] Only load vim-easytags if ctags is installed
This commit is contained in:
parent
3aa2cb723b
commit
4b44bd7386
1 changed files with 8 additions and 6 deletions
14
vimrc
14
vimrc
|
@ -103,12 +103,14 @@ if has("unix") || has("mac")
|
||||||
\ 'linter_errors': 'error'
|
\ 'linter_errors': 'error'
|
||||||
\ },
|
\ },
|
||||||
\}
|
\}
|
||||||
"Needed for vim-easytags"
|
if executable('ctags')
|
||||||
Plugin 'xolox/vim-misc'
|
"Needed for vim-easytags"
|
||||||
Plugin 'xolox/vim-easytags'
|
Plugin 'xolox/vim-misc'
|
||||||
let g:easytags_async=1
|
Plugin 'xolox/vim-easytags'
|
||||||
"Needed for YouCompleteMe"
|
let g:easytags_async=1
|
||||||
let g:easytags_opts=['--fields=+l']
|
"Needed for YouCompleteMe"
|
||||||
|
let g:easytags_opts=['--fields=+l']
|
||||||
|
endif
|
||||||
Plugin 'godlygeek/tabular'
|
Plugin 'godlygeek/tabular'
|
||||||
Plugin 'beyondmarc/opengl.vim'
|
Plugin 'beyondmarc/opengl.vim'
|
||||||
Plugin 'tikhomirov/vim-glsl'
|
Plugin 'tikhomirov/vim-glsl'
|
||||||
|
|
Loading…
Reference in a new issue