Re-add plugin for completion with auto-suggest diabled

This commit is contained in:
Nicole Tietz-Sokolskaya 2021-11-23 10:58:19 -05:00
parent 721fee88ff
commit 69573e53cc
3 changed files with 7 additions and 1 deletions

View file

@ -0,0 +1,3 @@
{
"suggest.autoTrigger": "none"
}

View file

@ -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()

View file

@ -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()