From f505557ac4b3e27271a2c7316bff8131b18bada2 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Sun, 22 Sep 2019 13:44:05 +0200 Subject: [PATCH] Removed black plugin --- vim/vimrc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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