plugin added: Ultisnips

This commit is contained in:
ManjaroOne666 2017-09-16 17:24:09 +01:00
parent 6ac3126e1c
commit 768cad94e2
1 changed files with 15 additions and 0 deletions

15
vimrc
View File

@ -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>