Allow the disabling of autotagging again

This commit is contained in:
Kevin MacMartin 2022-04-15 15:00:47 -04:00
parent 7b243e00ca
commit 98e47fb0df

View file

@ -1 +1,6 @@
let g:gutentags_cache_dir = '~/.vim/gutentags'
"prevent automatically generating the tagfile and syntax highlighting tags (default: 0)
if !exists("g:disableautotags")
let g:gutentags_enabled = 0
endif