nvim: init.vim: Add ultisnips
Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
parent
0527052815
commit
1885132796
1 changed files with 9 additions and 0 deletions
|
@ -69,6 +69,9 @@ Plug 'sebastianmarkow/deoplete-rust', { 'for': 'rust' }
|
|||
Plug 'cespare/vim-toml', { 'for': 'rust' }
|
||||
Plug 'rust-lang/rust.vim', { 'for': 'rust' }
|
||||
Plug 'mhinz/vim-crates'
|
||||
" Snippets
|
||||
Plug 'SirVer/ultisnips'
|
||||
Plug 'honza/vim-snippets'
|
||||
" Erlang Support
|
||||
Plug 'vim-erlang/vim-erlang-tags', { 'for': 'erlang' }
|
||||
Plug 'vim-erlang/vim-erlang-runtime', { 'for': 'erlang' }
|
||||
|
@ -567,6 +570,12 @@ let g:cpp_posix_standard = 1
|
|||
let g:cpp_concepts_highlight = 1
|
||||
|
||||
let g:agriculture#rg_options = '--case-sensitive'
|
||||
|
||||
let g:UltiSnipsExpandTrigger="<Tab>"
|
||||
let g:UltiSnipsJumpForwardTrigger="<C-b>"
|
||||
let g:UltiSnipsJumpBackwardTrigger="<C-z>"
|
||||
let g:UltiSnipsEditSplit="vertical"
|
||||
|
||||
" ----------------------------- Functions ------------------------------------
|
||||
" For CScope and Quickfix
|
||||
" https://medium.com/@lakshmankumar12/quickfix-and-location-list-in-vim-ca0292ac894d
|
||||
|
|
Loading…
Reference in a new issue