15 lines
380 B
VimL
15 lines
380 B
VimL
" Plugin directory is optional
|
|
call plug#begin()
|
|
|
|
" Declare the list of plugins.
|
|
Plug 'prabirshrestha/vim-lsp'
|
|
Plug 'mattn/vim-lsp-settings'
|
|
|
|
Plug 'prabirshrestha/asyncomplete.vim'
|
|
Plug 'prabirshrestha/asyncomplete-lsp.vim'
|
|
|
|
" List ends here. Plugins become visible to Vim after this call.
|
|
call plug#end()
|
|
|
|
inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
|
|
set backspace=2
|