diff options
-rw-r--r-- | vim/vimrc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 {{{ |