solved bug with python lsp and ale

This commit is contained in:
gurkenhabicht 2026-08-03 18:47:03 +02:00
parent 38e3927370
commit ac4abff687
5 changed files with 7 additions and 1 deletions

3
.gitmodules vendored
View File

@ -43,3 +43,6 @@
[submodule "vim/.vim/pack/default/opt/vim-log-highlighting"]
path = vim/.vim/pack/default/opt/vim-log-highlighting
url = https://github.com/MTDL9/vim-log-highlighting.git
[submodule "vim/.vim/pack/default/start/dbext"]
path = vim/.vim/pack/default/start/dbext
url = https://github.com/vim-scripts/dbext.vim.git

View File

@ -3,7 +3,7 @@ autocmd FileType python map <buffer> <F9> :w<CR>:exec '!python3' shellescape(@%,
autocmd FileType python imap <buffer> <F9> <esc>:w<CR>:exec '!python3' shellescape(@%, 1)<CR>
set tabstop=4 shiftwidth=4 autoindent smartindent expandtab
setlocal colorcolumn=80
setlocal colorcolumn=120
setlocal path=.,**
setlocal wildignore+=*.pyc

@ -0,0 +1 @@
Subproject commit 14f3d530b6189dc3f97edfa70b7a36006e21148c

@ -0,0 +1 @@
Subproject commit 1037e26f3120e6a6a2c0c33b14a84336dee2a78f

View File

@ -253,6 +253,7 @@ let g:ale_completion_autoimport = 1
" let g:ale_floating_window_border = repeat([''], 8)
let g:ale_close_preview_on_insert = 1
let g:ale_hover_to_preview = 1
let g:ale_use_neovim_lsp_api = 0
let g:ale_echo_msg_error_str = 'E'
let g:ale_echo_msg_warning_str = 'W'