From 55f11ab1ba74f05b980beb685556f2d7ada5ea0a Mon Sep 17 00:00:00 2001 From: Squibid Date: Thu, 16 Oct 2025 21:34:49 -0400 Subject: [PATCH] add basedpyright lsp configuration --- after/lsp/basedpyright.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 after/lsp/basedpyright.lua diff --git a/after/lsp/basedpyright.lua b/after/lsp/basedpyright.lua new file mode 100644 index 0000000..c1d52a7 --- /dev/null +++ b/after/lsp/basedpyright.lua @@ -0,0 +1,17 @@ +return { + settings = { + python = { + pythonPath = "python" + }, + basedpyright = { + reportAny = false, + analysis = { + autoSearchPaths = true, + diagnosticMode = "workspace", + inlayHints = { + callArgumentNames = true + } + } + } + } +}