heavim/plugins/vim-lsp-settings.cfg.vim

21 lines
436 B
VimL

let g:lsp_settings = {
\ 'pylsp-all': {
\ 'workspace_config': {
\ 'pylsp': {
\ 'plugins': {
\ 'black': {
\ 'enabled' : v:true ,
\ },
\ 'pycodestyle': {
\ 'maxLineLength' : 88 ,
\ },
\ 'pylint': {
\ 'enabled': v:true,
\ }
\ }
\ }
\ }
\ },
\}
let g:lsp_settings['pylsp'] = g:lsp_settings['pylsp-all']