16 lines
305 B
VimL
16 lines
305 B
VimL
let g:lsp_settings = {
|
|
\ 'pylsp-all': {
|
|
\ 'workspace_config': {
|
|
\ 'pylsp': {
|
|
\ 'plugins': {
|
|
\ 'black': {
|
|
\ 'enabled' : v:true ,
|
|
\ },
|
|
\ 'pycodestyle': {
|
|
\ 'maxLineLength' : 88 ,
|
|
\ }
|
|
\ }
|
|
\ }
|
|
\ }
|
|
\ },
|
|
\}
|