diff options
author | Chris <[email protected]> | 2020-05-10 19:46:00 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2020-05-10 19:46:00 -0400 |
commit | bdad0adcab896789779fae5551a08f1d356f2ec5 (patch) | |
tree | 610c6b40f950375ed99833275629069d68b96f05 | |
parent | db80027544fdb56160b2e4bef16a98bdc1da76c8 (diff) |
updates
-rw-r--r-- | general/settings.vim | 2 | ||||
-rw-r--r-- | plug-config/coc.vim | 22 |
2 files changed, 23 insertions, 1 deletions
diff --git a/general/settings.vim b/general/settings.vim index 06b13ede..f1129e99 100644 --- a/general/settings.vim +++ b/general/settings.vim @@ -35,7 +35,7 @@ if !exists('g:vscode') set timeoutlen=100 " By default timeoutlen is 1000 ms set clipboard=unnamedplus " Copy paste between vim and everything else set incsearch - set guifont=Hack\ Nerd\ Font + " set guifont=Hack\ Nerd\ Font " let $NVIM_TUI_ENABLE_TRUE_COLOR=1 " set mmp=1300 " set autochdir " Your working directory will always be the same as your working directory 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 + |