mirror of https://github.com/nirenjan/vimfiles.git
17 lines
512 B
VimL
17 lines
512 B
VimL
" File: ultisnips-settings.vim
|
|
" Author: Nirenjan Krishnan
|
|
" Description: Base settings for UltiSnips plugin
|
|
" Last Modified: May 21, 2014
|
|
|
|
" Go with TextMate style triggers
|
|
let g:UltiSnipsExpandTrigger="<tab>"
|
|
let g:UltiSnipsListSnips="<c-tab>"
|
|
let g:UltiSnipsJumpForwardTrigger="<tab>"
|
|
let g:UltiSnipsJumpBackwardTrigger="<s-tab>"
|
|
|
|
" Edit splits in a vertical split
|
|
let g:UltiSnipsEditSplit='vertical'
|
|
|
|
" Ignore the no python warning if Vim doesn't have python support enabled
|
|
let g:UltiSnipsNoPythonWarning=1
|