aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vim/vimrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 040ecb9..3a4ff89 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -228,7 +228,7 @@ let g:ale_echo_msg_error_str = 'ALE Error'
let g:ale_echo_msg_format = 'ALE: %linter% - %code: %%s'
let g:ale_loclist_msg_format = 'ALE: %linter% - %code: %%s'
let g:ale_echo_msg_warning_str = 'ALE Warning'
-let g:ale_linters = {'python': ['pyright', 'ruff', 'flake8', 'mypy'],
+let g:ale_linters = {'python': ['flake8', 'mypy'],
\ 'ocaml': ['merlin'],
\ 'javascript': ['eslint'],
\ 'cpp': ['clangd'],
@@ -237,7 +237,7 @@ let g:ale_linters = {'python': ['pyright', 'ruff', 'flake8', 'mypy'],
\ 'go': ['gopls', 'golint', 'gofmt'],
\}
let g:ale_fixers = {
-\ 'python': ['autoimport', 'ruff', 'isort', 'yapf', 'black'],
+\ 'python': ['isort', 'yapf'],
\ 'javascript': ['eslint'],
\ 'go': ['gofmt', 'goimports', 'gopls'],
\ 'cpp': ['clang-format'],
@@ -290,7 +290,7 @@ nmap <silent> tl :TestLast<CR>
nmap <silent> <leader>tv :TestVisit<CR>
let test#strategy = "basic"
let test#python#pytest#options = '-q -s'
-let test#python#runner = 'django'
+let test#python#runner = 'pytest'
let test#vimterminal#term_position = "belowright"
" }}}
" Titbits {{{