updated nvim config

This commit is contained in:
Thies Lennart Alff 2023-08-16 14:46:25 +02:00
parent e4b987a29a
commit 8e95477272

View file

@ -38,3 +38,14 @@ cmp.setup({
documentation = cmp.config.window.bordered(), documentation = cmp.config.window.bordered(),
}, },
}) })
require('lspconfig').pylsp.setup {
settings = {
pylsp = {
plugins = {
autopep8 = { enabled = false },
yapf = { enabled = true, args = '--style={based_on_style: google column_limit: 80}' },
}
}
}
}