Removed black plugin
This commit is contained in:
parent
e600aa5c3d
commit
f505557ac4
1 changed files with 2 additions and 5 deletions
|
@ -27,7 +27,6 @@ Plug 'Shougo/vimproc.vim', {'do' : 'make'}
|
||||||
Plug 'rhysd/vim-clang-format'
|
Plug 'rhysd/vim-clang-format'
|
||||||
Plug 'derekwyatt/vim-fswitch'
|
Plug 'derekwyatt/vim-fswitch'
|
||||||
Plug 'itchyny/lightline.vim'
|
Plug 'itchyny/lightline.vim'
|
||||||
Plug 'ambv/black'
|
|
||||||
Plug 'altercation/vim-colors-solarized'
|
Plug 'altercation/vim-colors-solarized'
|
||||||
Plug 'craigemery/vim-autotag'
|
Plug 'craigemery/vim-autotag'
|
||||||
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
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
|
let g:deoplete#enable_at_startup = 1
|
||||||
autocmd CompleteDone * silent! pclose!
|
autocmd CompleteDone * silent! pclose!
|
||||||
call deoplete#custom#source('_', 'matchers', ['matcher_full_fuzzy'])
|
call deoplete#custom#source('_', 'matchers', ['matcher_full_fuzzy'])
|
||||||
|
|
||||||
inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
|
inoremap <expr> <Tab> pumvisible() ? "\<C-n>" : "\<Tab>"
|
||||||
inoremap <expr> <S-Tab> pumvisible() ? "\<C-p>" : "\<S-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>
|
nnoremap <F12> :call LanguageClient#textDocument_definition()<CR>
|
||||||
let g:LanguageClient_serverCommands = {
|
let g:LanguageClient_serverCommands = {
|
||||||
\ 'python': ['pyls'],
|
\ 'python': ['pyls'],
|
||||||
\ 'cpp': ['clangd'],
|
\ 'cpp': ['/usr/lib/llvm/8/bin/clangd'],
|
||||||
\ }
|
\ }
|
||||||
|
|
||||||
" lightline config
|
" lightline config
|
||||||
let g:lightline = { 'colorscheme': 'solarized' }
|
let g:lightline = { 'colorscheme': 'solarized' }
|
||||||
|
|
||||||
" Black config
|
|
||||||
autocmd BufWritePre *.py execute ':Black'
|
|
||||||
|
|
||||||
" vim-fswitch
|
" vim-fswitch
|
||||||
nmap <ESC>o :FSHere<CR>
|
nmap <ESC>o :FSHere<CR>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue