dotfiles/vim/.vim/plugin/plugins.vim

17 lines
331 B
VimL
Raw Normal View History

runtime macros/matchit.vim
filetype on
2019-11-25 17:58:42 +01:00
call plug#begin()
Plug 'lervag/vimtex'
Plug 'sheerun/vim-polyglot'
2020-02-05 10:05:04 +01:00
Plug 'fatih/vim-go'
2019-11-25 17:58:42 +01:00
call plug#end()
let g:match_ignorecase = 1
let g:polyglot_disabled = ['latex']
let g:UltiSnipsExpandTrigger="<tab>"
let g:UltiSnipsJumpForwardTrigger="<c-b>"
let g:UltiSnipsJumpBackwardTrigger="<c-z>"