plugins - Re-added LSP plugins

This commit is contained in:
Emmanuel BENOîT 2023-06-24 17:01:51 +02:00
parent 185b985b93
commit 6a54605c21
No known key found for this signature in database
GPG key ID: 2356DC6956CF54EF
6 changed files with 8 additions and 2 deletions

View file

@ -0,0 +1,19 @@
let g:lsp_settings = {
\ 'pylsp-all': {
\ 'workspace_config': {
\ 'pylsp': {
\ 'plugins': {
\ 'black': {
\ 'enabled' : v:true ,
\ },
\ 'pycodestyle': {
\ 'maxLineLength' : 88 ,
\ },
\ 'pylint': {
\ 'enabled': v:true,
\ }
\ }
\ }
\ }
\ },
\}