From 1f0857150dcb169452ba5cc07e6ddac83bcd6707 Mon Sep 17 00:00:00 2001 From: dietpi Date: Mon, 27 Jan 2025 11:18:33 +0000 Subject: [PATCH] disable pyright disable pyright on start, instead ruff --- lsp.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lsp.lua diff --git a/lsp.lua b/lsp.lua new file mode 100644 index 0000000..5da7951 --- /dev/null +++ b/lsp.lua @@ -0,0 +1,13 @@ +return { + { + "neovim/nvim-lspconfig", + opts = { + servers = { + pyright = { + mason = false, + autostart = false, + }, + }, + }, + }, +}