diff --git a/vim/vimrc b/vim/vimrc index 3e00931..0f62903 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -27,7 +27,6 @@ Plug 'Shougo/vimproc.vim', {'do' : 'make'} Plug 'rhysd/vim-clang-format' Plug 'derekwyatt/vim-fswitch' Plug 'itchyny/lightline.vim' -Plug 'ambv/black' Plug 'altercation/vim-colors-solarized' Plug 'craigemery/vim-autotag' Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } @@ -80,6 +79,7 @@ let g:autotagmaxTagsFileSize = 1024 * 1024 * 128 let g:deoplete#enable_at_startup = 1 autocmd CompleteDone * silent! pclose! call deoplete#custom#source('_', 'matchers', ['matcher_full_fuzzy']) + inoremap pumvisible() ? "\" : "\" inoremap pumvisible() ? "\" : "\" @@ -89,15 +89,12 @@ nnoremap :call LanguageClient_contextMenu() nnoremap :call LanguageClient#textDocument_definition() let g:LanguageClient_serverCommands = { \ 'python': ['pyls'], - \ 'cpp': ['clangd'], + \ 'cpp': ['/usr/lib/llvm/8/bin/clangd'], \ } " lightline config let g:lightline = { 'colorscheme': 'solarized' } -" Black config -autocmd BufWritePre *.py execute ':Black' - " vim-fswitch nmap o :FSHere