summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-06-09 20:12:11 +0200
committerThomas Vanbesien <tvanbesi@proton.me>2026-06-09 21:03:10 +0200
commit9f2921da8b58ae206c07132cc1673281ce7283f1 (patch)
treef1bfdbfd2ff224a3914ceea5a6e00d97bae6f1cd
parent3880e9d317fcd36d50b82e1498897f68b838761c (diff)
downloaddotfiles-9f2921da8b58ae206c07132cc1673281ce7283f1.tar.gz
dotfiles-9f2921da8b58ae206c07132cc1673281ce7283f1.zip
misc: add pyrightconfig.json
For working with Python remote plugins for neovim. The `include` is necessary or else pyright would try to analyze all files under HOME, `include` restricts it. The `exclude` is defined because the default value excludes dot dirs by default, the new one does not.
-rw-r--r--pyrightconfig.json9
1 files changed, 9 insertions, 0 deletions
diff --git a/pyrightconfig.json b/pyrightconfig.json
new file mode 100644
index 0000000..ed66f75
--- /dev/null
+++ b/pyrightconfig.json
@@ -0,0 +1,9 @@
+{
+ "include": [
+ ".config/nvim/rplugin/python3"
+ ],
+ "exclude": [
+ "**/__pycache__"
+ ],
+ "stubPath": "typings"
+}