dotfiles/dot_config/nvim/coc.vim
2020-05-06 23:20:54 -05:00

20 lines
380 B
VimL

set hidden
set nobackup
set nowritebackup
set cmdheight=2
set shortmess+=c
set signcolumn=yes
inoremap <silent><expr> <c-space> coc#refresh()
function! s:show_documentation()
if (index(['vim','help'], &filetype) >= 0)
execute 'h '.expand('<cword>')
else
call CocAction('doHover')
endif
endfunction
" Binds
nnoremap <silent> K :call <SID>show_documentation()<CR>