From e90a4f3f66c6e64d187b9f0cbb67133f1a77c0f2 Mon Sep 17 00:00:00 2001 From: pml68 Date: Tue, 16 Sep 2025 23:07:41 +0200 Subject: feat: move lsp configs to `lsp/` --- lsp/pyright.lua | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lsp/pyright.lua (limited to 'lsp/pyright.lua') diff --git a/lsp/pyright.lua b/lsp/pyright.lua new file mode 100644 index 0000000..b7e9a2a --- /dev/null +++ b/lsp/pyright.lua @@ -0,0 +1,14 @@ +return { + single_file_support = true, + settings = { + python = { + analysis = { + typeCheckingMode = true, + reportUnusedImport = true, + autoSearchPaths = true, + diagnosticMode = "workspace", + useLibraryCodeForTypes = true, + }, + }, + }, +} -- cgit v1.2.3