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
" 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

View File

@ -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'

View File

@ -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
" ----------------