[UPDATE][VIM] Move plugin settings to directory

This commit is contained in:
Bruno BELANYI 2019-11-09 15:13:48 +01:00
parent f7653311d5
commit da54f2d130
7 changed files with 138 additions and 151 deletions

View file

@ -0,0 +1,12 @@
" Insert mode trigger for expansion
let g:UltiSnipsExpandTrigger="<Tab>"
" Jump forward and backwards in place-holder list with Ctrl-f and Ctrl-b
let g:UltiSnipsJumpBackwardTrigger="<S-Tab>"
let g:UltiSnipsJumpForwardTrigger="<Tab>"
" Split the windowd vertically when callin :UltiSnipsEdits
let g:UltiSnipsEditSplit="vertical"
" Store my personal snippets under ~/.vim/UltiSnips
let g:UltiSnipsSnippetsDir='~/.vim/UltiSnips'