initial commit
This commit is contained in:
commit
507d28a6e2
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"coc.preferences.autoTrigger": "always",
|
||||
"coc.preferences.timeout": 200,
|
||||
"coc.preferences.triggerAfterInsertEnter": false
|
||||
}
|
|
@ -0,0 +1,18 @@
|
|||
" set runtimepath^=~/.vim runtimepath+=~/.vim/after
|
||||
" let &packpath = &runtimepath
|
||||
|
||||
if empty(glob('~/.config/nvim/autoload/plug.vim'))"{{{
|
||||
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
|
||||
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
|
||||
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
|
||||
endif
|
||||
"}}}
|
||||
|
||||
call plug#begin('~/.config/nvim/bundle')
|
||||
" #coc.nvim{{{
|
||||
" https://github.com/neoclide/coc.nvim
|
||||
" Plug 'neoclide/coc.nvim', {'tag': '*', 'do': { -> coc#util#install()}}
|
||||
" }}
|
||||
call plug#end()
|
||||
|
||||
" source ~/.config/vim/vimrc
|
Loading…
Reference in New Issue