From 14cdc77d5db5936c95b2270ecfe454e1f5d987ea Mon Sep 17 00:00:00 2001 From: Johannes Rothe Date: Thu, 26 Jan 2023 09:43:41 +0100 Subject: [PATCH] vimrc: add indentline plugin --- roles/dotfiles/files/vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roles/dotfiles/files/vimrc b/roles/dotfiles/files/vimrc index 45dbb03..810673f 100644 --- a/roles/dotfiles/files/vimrc +++ b/roles/dotfiles/files/vimrc @@ -65,6 +65,7 @@ Plug 'vim-python/python-syntax' Plug 'wgwoods/vim-systemd-syntax' Plug 'fatih/vim-go', { 'do': ':GoUpdateBinaries' } Plug 'cespare/vim-toml',{ 'branch': 'main' } +Plug 'Yggdroot/indentLine' call plug#end() " Theme @@ -81,7 +82,7 @@ let g:airline_theme = 'sonokai' " Ale let g:ale_linters = {'python': ['pylint', 'mypy'],} 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' " Black