disable vim-gutentags

This commit is contained in:
Ray Elliott 2020-03-12 16:10:10 +00:00
parent 80476ada61
commit 2d34d84596
1 changed files with 6 additions and 6 deletions

View File

@ -58,7 +58,7 @@
" inoremap <silent><expr> <c-n> coc#refresh()
nnoremap <silent> <silent> <space><space> :call CocAction('doHover')<CR>
nnoremap <silent> <silent> cc :call CocAction('doHover')<CR>
nnoremap <silent> <silent> <space>cc :call CocAction('doHover')<CR>
nnoremap <silent> <space>cf :call CocAction('doQuickfix')<CR>
nnoremap <silent> <space>cg :call CocAction('jumpDefinition')<CR>
nnoremap <silent> <space>ci :call CocAction('jumpImplementation')<CR>
@ -282,11 +282,11 @@ let g:mta_filetypes = {
"}}}
" #vim-gutentags {{{
" https://github.com/ludovicchabant/vim-gutentags
Plug 'ludovicchabant/vim-gutentags'
let g:gutentags_ctags_tagfile = '.tags'
let g:gutentags_ctags_exclude = ['package.json', 'Session.vim', 'package-lock.json', 'TODO.txt']
let g:gutentags_resolve_symlinks = 1
" Plug 'ludovicchabant/vim-gutentags'
"
" let g:gutentags_ctags_tagfile = '.tags'
" let g:gutentags_ctags_exclude = ['package.json', 'Session.vim', 'package-lock.json', 'TODO.txt']
" let g:gutentags_resolve_symlinks = 1
"}}}
" #vim-Jinja2-Syntax{{{