commit 1f0857150dcb169452ba5cc07e6ddac83bcd6707 Author: dietpi Date: Mon Jan 27 11:18:33 2025 +0000 disable pyright disable pyright on start, instead ruff 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, + }, + }, + }, + }, +}