|
|
|
@ -73,10 +73,6 @@ if !has("win32") || !has("win16")
|
|
|
|
|
endfunction |
|
|
|
|
Plug 'Valloric/YouCompleteMe', { 'do': function('BuildYCM') } |
|
|
|
|
|
|
|
|
|
" Tree explorer |
|
|
|
|
"Instead of forcing vim to start Nerdtree just do it manually |
|
|
|
|
" autocmd vimenter * NERDTree " make NERDTree come up automatically |
|
|
|
|
" on vim start |
|
|
|
|
|
|
|
|
|
Plug 'scrooloose/nerdtree' |
|
|
|
|
" For nerdtree indicators of what has changed |
|
|
|
@ -93,19 +89,21 @@ Plug 'godlygeek/tabular'
|
|
|
|
|
Plug 'plasticboy/vim-markdown' |
|
|
|
|
|
|
|
|
|
" Snippet Support/Configuration |
|
|
|
|
Plug 'SirVer/ultisnips' |
|
|
|
|
Plug 'honza/vim-snippets' |
|
|
|
|
" Currently disabled because it irrepairably causes neovim to detonate more |
|
|
|
|
" than I care to deal with as of 5/26/2017 |
|
|
|
|
"Plug 'SirVer/ultisnips' |
|
|
|
|
"Plug 'honza/vim-snippets' |
|
|
|
|
|
|
|
|
|
" Database engine support |
|
|
|
|
Plug 'https://github.com/vim-scripts/dbext.vim' |
|
|
|
|
|
|
|
|
|
let g:UltiSnipsExpandTrigger="<c-s>" |
|
|
|
|
let g:UltiSnipsJumpForwardTrigger="<c-b>" |
|
|
|
|
let g:UltiSnipsJumpBackwardTrigger="<c-z>" |
|
|
|
|
let g:UltiSnipsSnippetsDir=["~/.config/nvim/plugged/vim-snippets/UltiSnips", "~/.config/nvim/snippets"] |
|
|
|
|
"let g:UltiSnipsExpandTrigger="<c-s>" |
|
|
|
|
"let g:UltiSnipsJumpForwardTrigger="<c-b>" |
|
|
|
|
"let g:UltiSnipsJumpBackwardTrigger="<c-z>" |
|
|
|
|
"let g:UltiSnipsSnippetsDir=["~/.config/nvim/plugged/vim-snippets/UltiSnips", "~/.config/nvim/snippets"] |
|
|
|
|
|
|
|
|
|
" Allow UltiSnips to split the window vertically |
|
|
|
|
let g:UltiSnipssEditSplit="vertical" |
|
|
|
|
"" Allow UltiSnips to split the window vertically |
|
|
|
|
"let g:UltiSnipssEditSplit="vertical" |
|
|
|
|
|
|
|
|
|
""""""""""""""""""""""""""""""" |
|
|
|
|
|
|
|
|
|