aboutsummaryrefslogtreecommitdiff
path: root/files/.vimrc
diff options
context:
space:
mode:
Diffstat (limited to 'files/.vimrc')
-rw-r--r--files/.vimrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/files/.vimrc b/files/.vimrc
index 315f0c4..8c744d3 100644
--- a/files/.vimrc
+++ b/files/.vimrc
@@ -92,7 +92,9 @@ Plug 'editorconfig/editorconfig-vim'
" use CTRL+A/X to create increasing sequence of numbers or letters via visual mode
Plug 'triglav/vim-visual-increment'
" A Vim plugin that manages your tag files
-Plug 'ludovicchabant/vim-gutentags'
+if executable('ctags') || executable('ctags-exuberant') || executable('ctags-universal')
+ Plug 'ludovicchabant/vim-gutentags'
+endif
" Asynchronous build and test dispatcher
Plug 'tpope/vim-dispatch'
" Run your tests at the speed of thought