From e982957f6b943e5f14a001167faf4e7748eae396 Mon Sep 17 00:00:00 2001 From: Wouter Gordts Date: Fri, 6 Dec 2024 19:12:37 +0100 Subject: [PATCH] long overdue update --- visual.vimrc | 2 +- waldek_plugins.list | 4 ++++ waldek_plugins.vimrc | 47 ++++++++++++++++++++++---------------------- 3 files changed, 29 insertions(+), 24 deletions(-) diff --git a/visual.vimrc b/visual.vimrc index 9038eee..a4d7b0b 100644 --- a/visual.vimrc +++ b/visual.vimrc @@ -15,7 +15,7 @@ set wrap linebreak nolist set textwidth=0 " add a color column at the 80 char -set colorcolumn=80 +set colorcolumn=100 " spelling highlight needs to be done after the colorscheme load highlight SpellBad term=underline cterm=underline diff --git a/waldek_plugins.list b/waldek_plugins.list index 42e8a59..566e957 100644 --- a/waldek_plugins.list +++ b/waldek_plugins.list @@ -27,3 +27,7 @@ Plugin 'liuchengxu/graphviz.vim' Plugin 'weirongxu/plantuml-previewer.vim' Plugin 'aklt/plantuml-syntax' Plugin 'tyru/open-browser.vim.git' + +"Plugin 'fatih/vim-go' + +Plugin 'jupyter-vim/jupyter-vim' diff --git a/waldek_plugins.vimrc b/waldek_plugins.vimrc index 4193921..78d38a0 100644 --- a/waldek_plugins.vimrc +++ b/waldek_plugins.vimrc @@ -106,30 +106,31 @@ let g:markdown_syntax_conceal=1 " lsp-settings " ------------ -"let g:lsp_settings_filetype_python = ['pylsp-all', 'pyright-langserver'] -"let g:lsp_settings_filetype_python = ['pyright-langserver'] -let g:lsp_settings_filetype_python = ['pylsp-all'] +"let g:lsp_settings_filetype_python = ['pylsp-all'] +"let g:lsp_settings_filetype_python = ['pylsp-all', 'pyright-langserver', 'ruff-lsp'] +let g:lsp_settings_filetype_python = ['pyright-langserver'] +"let g:lsp_settings_filetype_python = ['ruff-lsp'] -"let g:lsp_settings = { -"\ 'pyls-all': { -"\ 'workspace_config': { -"\ 'pyls': { -"\ 'configurationSources': ['pycodestyle'], -"\ 'plugins': { -"\ 'pycodestyle': { -"\ 'enabled': v:false, -"\ 'ignore': ['E501'] -"\ }, -"\ "pyls_mypy": -"\ { -"\ "enabled": v:true, -"\ "live_mode": v:false -"\ }, -"\ } -"\ } -"\ } -"\ }, -"\} +let g:lsp_settings = { +\ 'pylsp-all': { +\ 'workspace_config': { +\ 'pylsp': { +\ 'configurationSources': ['pycodestyle'], +\ 'plugins': { +\ 'pycodestyle': { +\ 'enabled': v:true, +\ 'ignore': ['E501'] +\ }, +\ "pyls_mypy": +\ { +\ "enabled": v:true, +\ "live_mode": v:false +\ }, +\ } +\ } +\ } +\ }, +\} " ale-lsp settings " ----------------