From 4b6c4c4c446794b21c44a8ba4a891a925c02b7f4 Mon Sep 17 00:00:00 2001 From: Stefan Huber Date: Thu, 23 Dec 2021 20:48:40 +0100 Subject: [PATCH] plugins: Gutentags only for some filetypes --- plugins-noroot.vim | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/plugins-noroot.vim b/plugins-noroot.vim index da94c50..f88134f 100644 --- a/plugins-noroot.vim +++ b/plugins-noroot.vim @@ -1,7 +1,7 @@ Plug 'majutsushi/tagbar', {'on': 'TagbarToggle'} -" Disable conditional loading to have gutentags also for tex files -Plug 'ludovicchabant/vim-gutentags' ", {'for': ['c', 'cpp', 'objc', 'tex']} +" Conditional loading does not work, see github issue #823 +Plug 'ludovicchabant/vim-gutentags' "Plug 'vim-scripts/Conque-GDB', {'for': ['c', 'cpp', 'objc']} Plug 'editorconfig/editorconfig-vim' @@ -45,4 +45,8 @@ function PluginsNorootConfig() let g:vim_markdown_math=1 au FileType markdown call RagtagInit() + + " Generally disable gutentags, but enable for some filetypes + let g:gutentags_enabled = 0 + au FileType c,cpp,objc,tex let g:gutentags_enabled = 1 endfunction -- 2.30.2