plugin added: Ultisnips
This commit is contained in:
parent
6ac3126e1c
commit
768cad94e2
15
vimrc
15
vimrc
|
@ -74,6 +74,14 @@ Plugin 'pangloss/vim-javascript'
|
|||
" https://github.com/lifepillar/vim-mucomplete
|
||||
Plugin 'lifepillar/vim-mucomplete'
|
||||
|
||||
" ultisnips
|
||||
" https://github.com/sirver/UltiSnips
|
||||
Plugin 'SirVer/ultisnips'
|
||||
" and some snippets
|
||||
" https://github.com/honza/vim-snippets
|
||||
Plugin 'honza/vim-snippets'
|
||||
|
||||
|
||||
" All of your Plugins must be added before the following line
|
||||
call vundle#end() " required
|
||||
filetype plugin indent on " required
|
||||
|
@ -241,6 +249,13 @@ set completeopt+=noinsert
|
|||
set shortmess+=c " Shut off completion messages
|
||||
set belloff+=ctrlg " If Vim beeps during completion
|
||||
|
||||
call add(g:mucomplete#chains['default'], 'ulti')
|
||||
|
||||
" ultisnips
|
||||
" Trigger configuration. Do not use <tab> if you use https://github.com/Valloric/YouCompleteMe.
|
||||
let g:UltiSnipsExpandTrigger="<leader>u"
|
||||
let g:UltiSnipsJumpForwardTrigger="<c-b>"
|
||||
let g:UltiSnipsJumpBackwardTrigger="<c-z>"
|
||||
|
||||
" NERDtree
|
||||
nnoremap <F3> :NERDTreeFocus<CR>
|
||||
|
|
Loading…
Reference in New Issue