hello world
This commit is contained in:
parent
4fef70020b
commit
6f85110b9b
8 changed files with 63 additions and 37 deletions
15
examples/vimrc
Normal file
15
examples/vimrc
Normal file
|
@ -0,0 +1,15 @@
|
|||
" 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
|
Loading…
Add table
Add a link
Reference in a new issue