diff options
Diffstat (limited to 'plug-config')
-rw-r--r-- | plug-config/coc.vim | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/plug-config/coc.vim b/plug-config/coc.vim index 647bab73..8173ae08 100644 --- a/plug-config/coc.vim +++ b/plug-config/coc.vim @@ -1,3 +1,24 @@ + " let g:coc_global_extensions = [ + " \ 'coc-snippets', + " \ 'coc-actions', + " \ 'coc-emmet', + " \ 'coc-pairs', + " \ 'coc-tsserver', + " \ 'coc-floaterm', + " \ 'coc-html', + " \ 'coc-css', + " \ 'coc-cssmodules', + " \ 'coc-yaml', + " \ 'coc-python', + " \ 'coc-explorer', + " \ 'coc-svg', + " \ 'coc-prettier', + " \ 'coc-vimlsp', + " \ 'coc-xml', + " \ 'coc-yank', + " \ 'coc-json', + " \ 'coc-vimtex', + " \ ] " Use tab for trigger completion with characters ahead and navigate. inoremap <silent><expr> <TAB> @@ -132,3 +153,4 @@ let g:coc_explorer_global_presets = { " nnoremap <silent> <leader>e :CocCommand explorer<CR> " nmap <space>f :CocCommand explorer --preset floatingRightside<CR> autocmd BufEnter * if (winnr("$") == 1 && &filetype == 'coc-explorer') | q | endif + |