vimrc: add indentline plugin

This commit is contained in:
Johannes Rothe 2023-01-26 09:43:41 +01:00 committed by Johannes Rothe
parent 7e5732fc7a
commit 14cdc77d5d

View File

@ -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