From ac4abff68748e56e4f9f3591f8789d1daba277a7 Mon Sep 17 00:00:00 2001 From: gurkenhabicht Date: Mon, 3 Aug 2026 18:47:03 +0200 Subject: [PATCH] solved bug with python lsp and ale --- .gitmodules | 3 +++ vim/.vim/after/ftplugin/python.vim | 2 +- vim/.vim/pack/default/start/dbext | 1 + vim/.vim/pack/default/start/vim-log-highlighting | 1 + vim/.vimrc | 1 + 5 files changed, 7 insertions(+), 1 deletion(-) create mode 160000 vim/.vim/pack/default/start/dbext create mode 160000 vim/.vim/pack/default/start/vim-log-highlighting diff --git a/.gitmodules b/.gitmodules index 3f4a87b..d24951c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -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 diff --git a/vim/.vim/after/ftplugin/python.vim b/vim/.vim/after/ftplugin/python.vim index af0112f..e7f7677 100644 --- a/vim/.vim/after/ftplugin/python.vim +++ b/vim/.vim/after/ftplugin/python.vim @@ -3,7 +3,7 @@ autocmd FileType python map :w:exec '!python3' shellescape(@%, autocmd FileType python imap :w:exec '!python3' shellescape(@%, 1) set tabstop=4 shiftwidth=4 autoindent smartindent expandtab -setlocal colorcolumn=80 +setlocal colorcolumn=120 setlocal path=.,** setlocal wildignore+=*.pyc diff --git a/vim/.vim/pack/default/start/dbext b/vim/.vim/pack/default/start/dbext new file mode 160000 index 0000000..14f3d53 --- /dev/null +++ b/vim/.vim/pack/default/start/dbext @@ -0,0 +1 @@ +Subproject commit 14f3d530b6189dc3f97edfa70b7a36006e21148c diff --git a/vim/.vim/pack/default/start/vim-log-highlighting b/vim/.vim/pack/default/start/vim-log-highlighting new file mode 160000 index 0000000..1037e26 --- /dev/null +++ b/vim/.vim/pack/default/start/vim-log-highlighting @@ -0,0 +1 @@ +Subproject commit 1037e26f3120e6a6a2c0c33b14a84336dee2a78f diff --git a/vim/.vimrc b/vim/.vimrc index ba332cc..a3a6596 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -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'