heavim/bundles-init/vim-lsp-settings.cfg.vim

20 lines
377 B
VimL
Raw Normal View History

2020-12-03 00:10:20 +01:00
let g:lsp_settings = {
\ 'pylsp-all': {
2020-12-03 00:10:20 +01:00
\ 'workspace_config': {
\ 'pylsp': {
2020-12-03 00:10:20 +01:00
\ 'plugins': {
\ 'black': {
\ 'enabled' : v:true ,
\ },
\ 'pycodestyle': {
\ 'maxLineLength' : 88 ,
\ },
\ 'pylint': {
\ 'enabled': v:true,
2020-12-03 00:10:20 +01:00
\ }
\ }
\ }
\ }
\ },
\}