Re-add plugin for completion with auto-suggest diabled
This commit is contained in:
parent
721fee88ff
commit
69573e53cc
3 changed files with 7 additions and 1 deletions
3
nvim/.config/nvim/coc-settings.json
Normal file
3
nvim/.config/nvim/coc-settings.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"suggest.autoTrigger": "none"
|
||||
}
|
|
@ -54,4 +54,6 @@ au BufRead,BufNewFile *.tla setf tla
|
|||
" I like pretty things
|
||||
source $HOME/.config/nvim/colors.vim
|
||||
|
||||
" Manually trigger completions
|
||||
inoremap <silent><expr> <C-k> coc#refresh()
|
||||
|
||||
|
|
|
@ -25,8 +25,9 @@ Plug 'editorconfig/editorconfig-vim'
|
|||
Plug 'flazz/vim-colorschemes'
|
||||
|
||||
" Completion and other inline type hints
|
||||
"Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
||||
Plug 'neoclide/coc.nvim', {'tag': 'v0.0.80'}
|
||||
" After installation, run this to setup with Rust:
|
||||
" :CocInstall coc-rust-analyzer
|
||||
|
||||
|
||||
call plug#end()
|
||||
|
|
Loading…
Reference in a new issue