2019-07-25 09:51:54 +02:00
|
|
|
runtime macros/matchit.vim
|
|
|
|
filetype on
|
2019-11-25 17:58:42 +01:00
|
|
|
|
|
|
|
call plug#begin()
|
|
|
|
Plug 'lervag/vimtex'
|
2020-02-02 15:42:41 +01:00
|
|
|
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()
|
2020-03-03 18:26:11 +01:00
|
|
|
|
2020-03-08 15:23:37 +01:00
|
|
|
let g:match_ignorecase = 1
|
|
|
|
|
2020-03-03 18:26:11 +01:00
|
|
|
let g:polyglot_disabled = ['latex']
|
|
|
|
|
|
|
|
let g:UltiSnipsExpandTrigger="<tab>"
|
|
|
|
let g:UltiSnipsJumpForwardTrigger="<c-b>"
|
|
|
|
let g:UltiSnipsJumpBackwardTrigger="<c-z>"
|
2020-05-13 05:20:44 +02:00
|
|
|
|