1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2026-02-22 04:34:48 +01:00

latex autocompletion and ultisnips is back

This commit is contained in:
TiynGER
2020-04-06 17:49:23 +02:00
parent f8e183c13e
commit 6a041ca962
3 changed files with 210 additions and 0 deletions

View File

@@ -69,12 +69,17 @@ Plug 'majutsushi/tagbar' " Show tags
Plug 'airblade/vim-gitgutter' " Git Upgrades
Plug 'FredKSchott/CoVim' "Use vim together
Plug 'qpkorr/vim-renamer' " Bulk renamer
Plug 'sirver/ultisnips' " Snippets
call plug#end()
let g:ycm_global_ycm_extra_conf = '/home/tiynger/.config/nvim/ycm_extra_conf.py'
let g:ycm_semantic_triggers = {
\ 'tex' : ['{']
\}
if !exists('g:ycm_semantic_triggers')
let g:ycm_semantic_triggers = {}
endif
let g:ycm_semantic_triggers.tex = g:vimtex#re#youcompleteme
"tagbar
map <F3> :TagbarToggle<CR>