aboutsummaryrefslogtreecommitdiff
path: root/.vim
diff options
context:
space:
mode:
authorGuangxiong Lin <[email protected]>2023-04-12 21:43:06 +0800
committerGuangxiong Lin <[email protected]>2023-04-12 21:43:06 +0800
commit87a25410bbaae131c2638d9dd8f7d06970396dbb (patch)
treedca5f9ea7088184f4a45bc787b5d7a5286099d87 /.vim
parentc6920d0415ee5e1d952ff41392518f12073d1694 (diff)
downloaddotfiles-87a25410bbaae131c2638d9dd8f7d06970396dbb.tar.gz
dotfiles-87a25410bbaae131c2638d9dd8f7d06970396dbb.tar.bz2
dotfiles-87a25410bbaae131c2638d9dd8f7d06970396dbb.zip
ruff is more useful than pylint when editing
Diffstat (limited to '.vim')
-rw-r--r--.vim/after/plugin/ale.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/.vim/after/plugin/ale.vim b/.vim/after/plugin/ale.vim
index 7b01aec..17adb14 100644
--- a/.vim/after/plugin/ale.vim
+++ b/.vim/after/plugin/ale.vim
@@ -10,7 +10,7 @@ let g:ale_virtualtext_cursor = 1
let g:ale_linters = {
\ 'c': ['clangd', 'cc', 'ccls'],
\ 'go': [],
- \ 'python': ['pylint'],
+ \ 'python': ['ruff'],
\ }
nmap <silent> [g <Plug>(ale_previous_wrap)