Removed black plugin

main
mandlm 2019-09-22 13:44:05 +02:00 committed by changeme
parent e600aa5c3d
commit f505557ac4
1 changed files with 2 additions and 5 deletions

View File

@ -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 <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-Tab>"
@ -89,15 +89,12 @@ nnoremap <F5> :call LanguageClient_contextMenu()<CR>
nnoremap <F12> :call LanguageClient#textDocument_definition()<CR>
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 <ESC>o :FSHere<CR>