Changed ale settings
Added ctrl-p
This commit is contained in:
parent
07cd0f16ab
commit
65d9e1ad79
1 changed files with 7 additions and 1 deletions
|
|
@ -44,6 +44,7 @@ Plugin 'davidhalter/jedi-vim'
|
|||
Plugin 'ervandew/supertab'
|
||||
Plugin 'junegunn/vim-peekaboo'
|
||||
Plugin 'keith/swift.vim'
|
||||
Plugin 'ctrlpvim/ctrlp.vim'
|
||||
Plugin 'LaTeX-Box-Team/LaTeX-Box'
|
||||
Plugin 'mattn/emmet-vim'
|
||||
Plugin 'mattn/webapi-vim'
|
||||
|
|
@ -300,6 +301,11 @@ let g:airline#extensions#tabline#enabled = 1 " Show buffers as tabs
|
|||
|
||||
" ale settings
|
||||
|
||||
let g:ale_fixers = {'python': ['black']}
|
||||
|
||||
let g:ale_linters = {'python': ['flake8', 'mypy', 'pylint', 'prospector']}
|
||||
|
||||
let g:ale_fixers = {'python': ['isort', 'black'],
|
||||
\'json': ['fixjson'],
|
||||
\'java': ['uncrustify']}
|
||||
|
||||
colorscheme darcula
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue