diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-08-12 12:55:50 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-08-12 12:55:50 +0100 |
commit | 4e1b4a4df9c8ad9095031a58c0eca4766070a45c (patch) | |
tree | 3e53ceece33a045ee29a80ae10116abf07b3457c | |
parent | 4f7d0a65c38dba5bc063b9eee1ae46f945ccd6f2 (diff) | |
download | dotnvim-4e1b4a4df9c8ad9095031a58c0eca4766070a45c.tar.gz dotnvim-4e1b4a4df9c8ad9095031a58c0eca4766070a45c.zip |
Using balack again
-rw-r--r-- | lsp.lua | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -51,11 +51,15 @@ vim.lsp.handlers["textDocument/signatureHelp"] = vim.lsp.with( local servers = { -- server_name = settings pylsp = { + -- use https://github.com/python-lsp/python-lsp-server pylsp = { plugins = { pylsp_mypy = { enabled = true, live_move = false + }, + black = { + enabled = true } } } |