long overdue update

This commit is contained in:
Wouter Gordts 2024-12-06 19:12:37 +01:00
parent 2700c07cc1
commit e982957f6b
3 changed files with 29 additions and 24 deletions

View File

@ -15,7 +15,7 @@ set wrap linebreak nolist
set textwidth=0 set textwidth=0
" add a color column at the 80 char " add a color column at the 80 char
set colorcolumn=80 set colorcolumn=100
" spelling highlight needs to be done after the colorscheme load " spelling highlight needs to be done after the colorscheme load
highlight SpellBad term=underline cterm=underline highlight SpellBad term=underline cterm=underline

View File

@ -27,3 +27,7 @@ Plugin 'liuchengxu/graphviz.vim'
Plugin 'weirongxu/plantuml-previewer.vim' Plugin 'weirongxu/plantuml-previewer.vim'
Plugin 'aklt/plantuml-syntax' Plugin 'aklt/plantuml-syntax'
Plugin 'tyru/open-browser.vim.git' Plugin 'tyru/open-browser.vim.git'
"Plugin 'fatih/vim-go'
Plugin 'jupyter-vim/jupyter-vim'

View File

@ -106,30 +106,31 @@ let g:markdown_syntax_conceal=1
" lsp-settings " lsp-settings
" ------------ " ------------
"let g:lsp_settings_filetype_python = ['pylsp-all', 'pyright-langserver'] "let g:lsp_settings_filetype_python = ['pylsp-all']
"let g:lsp_settings_filetype_python = ['pyright-langserver'] "let g:lsp_settings_filetype_python = ['pylsp-all', 'pyright-langserver', 'ruff-lsp']
let g:lsp_settings_filetype_python = ['pylsp-all'] let g:lsp_settings_filetype_python = ['pyright-langserver']
"let g:lsp_settings_filetype_python = ['ruff-lsp']
"let g:lsp_settings = { let g:lsp_settings = {
"\ 'pyls-all': { \ 'pylsp-all': {
"\ 'workspace_config': { \ 'workspace_config': {
"\ 'pyls': { \ 'pylsp': {
"\ 'configurationSources': ['pycodestyle'], \ 'configurationSources': ['pycodestyle'],
"\ 'plugins': { \ 'plugins': {
"\ 'pycodestyle': { \ 'pycodestyle': {
"\ 'enabled': v:false, \ 'enabled': v:true,
"\ 'ignore': ['E501'] \ 'ignore': ['E501']
"\ }, \ },
"\ "pyls_mypy": \ "pyls_mypy":
"\ { \ {
"\ "enabled": v:true, \ "enabled": v:true,
"\ "live_mode": v:false \ "live_mode": v:false
"\ }, \ },
"\ } \ }
"\ } \ }
"\ } \ }
"\ }, \ },
"\} \}
" ale-lsp settings " ale-lsp settings
" ---------------- " ----------------