[ADD][VIM] UltiSnips configuration
Added the insertion shortcut and place-holder list jumps.
This commit is contained in:
parent
36b3757e67
commit
719d64a801
|
@ -181,7 +181,13 @@ let g:gruvbox_contrast_dark = '(hard)'
|
||||||
let g:gruvbox_italic=1
|
let g:gruvbox_italic=1
|
||||||
colorscheme gruvbox
|
colorscheme gruvbox
|
||||||
|
|
||||||
" FIXME: missing UltiSnips configuration
|
" 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="<C-f>"
|
||||||
|
let g:UltiSnipsJumpForwardTrigger="<C-b>"
|
||||||
|
" Split the windowd vertically when callin :UltiSnipsEdits
|
||||||
|
let g:UltiSnipsEditSplit="vertical"
|
||||||
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" Mappings
|
" Mappings
|
||||||
|
@ -225,7 +231,6 @@ nmap <Leader>ft :BTags<CR>
|
||||||
" Tags in all project files
|
" Tags in all project files
|
||||||
nmap <Leader>fT :Tags<CR>
|
nmap <Leader>fT :Tags<CR>
|
||||||
|
|
||||||
|
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
" Status line
|
" Status line
|
||||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||||
|
|
Loading…
Reference in a new issue