From a5c74852175c0fde0e0e42be259d1d48587dc866 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Doma=C5=84ski?= Date: Thu, 22 Aug 2024 17:27:16 +0200 Subject: [PATCH] [nvim python] move to pylsp + ruff again XD --- .config/nvim/lua/plugins/lsp.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/nvim/lua/plugins/lsp.lua b/.config/nvim/lua/plugins/lsp.lua index c59a7ca..0009b16 100644 --- a/.config/nvim/lua/plugins/lsp.lua +++ b/.config/nvim/lua/plugins/lsp.lua @@ -84,8 +84,8 @@ return { ensure_installed = { "lua_ls", "gopls", - "ruff_lsp", "pylsp", + "ruff_lsp", "tsserver", }, handlers = { @@ -111,6 +111,7 @@ return { settings = { pylsp = { plugins = { + mypy = { enabled = true }, black = { enabled = true }, isort = { enabled = true, profile = "black" }, },