long overdue update
This commit is contained in:
parent
2700c07cc1
commit
e982957f6b
|
@ -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
|
||||||
|
|
|
@ -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'
|
||||||
|
|
|
@ -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
|
||||||
" ----------------
|
" ----------------
|
||||||
|
|
Loading…
Reference in New Issue