diff options
author | Juan J. Martinez <jjm@usebox.net> | 2022-07-16 09:25:50 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-07-16 09:25:50 +0100 |
commit | e1bd2bba5adcc483e3b1d14bf94db03a88c35a88 (patch) | |
tree | 45ade9cdb28fc6ed5b1e1ec0bb7da75490814a23 | |
parent | 6d9f157f6d5504203599eeb0e30a08b2baf5cbc6 (diff) | |
download | dotnvim-e1bd2bba5adcc483e3b1d14bf94db03a88c35a88.tar.gz dotnvim-e1bd2bba5adcc483e3b1d14bf94db03a88c35a88.zip |
Using gutentags
-rw-r--r-- | init.vim | 5 | ||||
-rw-r--r-- | plugins.vim | 1 |
2 files changed, 6 insertions, 0 deletions
@@ -110,4 +110,9 @@ set completeopt-=preview " Set completeopt to have a better completion experience set completeopt=menuone,noinsert,noselect +" tags +let g:gutentags_generate_on_missing=0 +let g:gutentags_generate_on_new=0 +let g:gutentags_cache_dir='~/.cache/tags/' + " EOF diff --git a/plugins.vim b/plugins.vim index bed849f..5c7035b 100644 --- a/plugins.vim +++ b/plugins.vim @@ -21,6 +21,7 @@ Plug 'godlygeek/tabular' Plug 'preservim/vim-markdown' Plug 'samsaga2/vim-z80' Plug 'tomtom/tcomment_vim' +Plug 'ludovicchabant/vim-gutentags' " status line Plug 'nvim-lualine/lualine.nvim' |