diff options
author | Yigit Sever | 2019-09-23 00:54:05 +0300 |
---|---|---|
committer | Yigit Sever | 2019-09-23 00:54:05 +0300 |
commit | f71d79e1810861cfbb11238103c437252353d8e9 (patch) | |
tree | a39a9fd2000cfad9209d9bb977acc3519095da70 /.config/nvim/after/ftplugin | |
parent | c6a2d9648aab54ab811eaf8ef09e4553adc188f3 (diff) | |
download | dotfiles-f71d79e1810861cfbb11238103c437252353d8e9.tar.gz dotfiles-f71d79e1810861cfbb11238103c437252353d8e9.tar.bz2 dotfiles-f71d79e1810861cfbb11238103c437252353d8e9.zip |
Python linter
Diffstat (limited to '.config/nvim/after/ftplugin')
-rw-r--r-- | .config/nvim/after/ftplugin/python.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.config/nvim/after/ftplugin/python.vim b/.config/nvim/after/ftplugin/python.vim index dfa9a7a..845fd4b 100644 --- a/.config/nvim/after/ftplugin/python.vim +++ b/.config/nvim/after/ftplugin/python.vim | |||
@@ -1,2 +1,4 @@ | |||
1 | let b:ale_fixers = ['yapf', 'isort'] | 1 | let b:ale_fixers = ['yapf', 'isort'] |
2 | 2 | ||
3 | let b:ale_linters = ['pylint'] | ||
4 | |||