vimrc: add indentline plugin
This commit is contained in:
parent
7e5732fc7a
commit
14cdc77d5d
@ -65,6 +65,7 @@ Plug 'vim-python/python-syntax'
|
|||||||
Plug 'wgwoods/vim-systemd-syntax'
|
Plug 'wgwoods/vim-systemd-syntax'
|
||||||
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
|
Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' }
|
||||||
Plug 'cespare/vim-toml',{ 'branch': 'main' }
|
Plug 'cespare/vim-toml',{ 'branch': 'main' }
|
||||||
|
Plug 'Yggdroot/indentLine'
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" Theme
|
" Theme
|
||||||
@ -81,7 +82,7 @@ let g:airline_theme = 'sonokai'
|
|||||||
" Ale
|
" Ale
|
||||||
let g:ale_linters = {'python': ['pylint', 'mypy'],}
|
let g:ale_linters = {'python': ['pylint', 'mypy'],}
|
||||||
let g:ale_fixers = {'python': ['black', 'isort']}
|
let g:ale_fixers = {'python': ['black', 'isort']}
|
||||||
let g:ale_python_pylint_options = '--disable=C0111,C0330'
|
let g:ale_python_pylint_options = '--disable=C0111'
|
||||||
let g:ale_python_mypy_options = '--ignore-missing-imports --disallow-untyped-defs --disallow-incomplete-defs'
|
let g:ale_python_mypy_options = '--ignore-missing-imports --disallow-untyped-defs --disallow-incomplete-defs'
|
||||||
|
|
||||||
" Black
|
" Black
|
||||||
|
Loading…
x
Reference in New Issue
Block a user