diff options
author | Karel Kočí <cynerd@email.cz> | 2022-01-20 15:40:02 +0100 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-01-20 15:40:02 +0100 |
commit | 8fae57dbeab4e49ca2ef8e0806ef9a25789d5157 (patch) | |
tree | 2ae60d6bb2bee3ba1839e8ecf2d1a66a853444f1 /vim/ftplugin | |
parent | 658251b375c8f3a5051cd46e216445ba49728af2 (diff) | |
download | myconfigs-8fae57dbeab4e49ca2ef8e0806ef9a25789d5157.tar.gz myconfigs-8fae57dbeab4e49ca2ef8e0806ef9a25789d5157.tar.bz2 myconfigs-8fae57dbeab4e49ca2ef8e0806ef9a25789d5157.zip |
sway: various fixes and updates
Diffstat (limited to 'vim/ftplugin')
-rw-r--r-- | vim/ftplugin/python.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/ftplugin/python.vim b/vim/ftplugin/python.vim index 3edc7b5..1eda902 100644 --- a/vim/ftplugin/python.vim +++ b/vim/ftplugin/python.vim @@ -1,6 +1,6 @@ setlocal colorcolumn=120 setlocal textwidth=120 -let b:ale_linters = ['pylsp', 'pylint', 'mypy'] +let b:ale_linters = ['pylsp', 'pylint', 'mypy', 'pydocstyle'] let b:ale_fixers = ['isort', 'black', 'remove_trailing_lines', 'trim_whitespace'] let g:ale_python_black_options = '-l 120' |