diff options
| author | pml68 <contact@pml68.dev> | 2025-09-16 23:07:41 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-09-16 23:07:41 +0200 |
| commit | e90a4f3f66c6e64d187b9f0cbb67133f1a77c0f2 (patch) | |
| tree | efa94e86bc58e0f50bd3ec85879c774b0fb3f88d /lsp/pyright.lua | |
| parent | docs(README): update image sizes [skip ci] (diff) | |
| download | nvim-e90a4f3f66c6e64d187b9f0cbb67133f1a77c0f2.tar.gz | |
feat: move lsp configs to `lsp/`
Diffstat (limited to 'lsp/pyright.lua')
| -rw-r--r-- | lsp/pyright.lua | 14 |
1 files changed, 14 insertions, 0 deletions
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, + }, + }, + }, +} |
