vim-lsp-settings - Python settings

This commit is contained in:
Emmanuel BENOîT 2020-12-03 00:10:20 +01:00
parent fd9ca401c4
commit d0aae775d0

View file

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