diff options
| author | pml68 <tutorialmester@gmail.com> | 2024-03-29 11:35:07 +0100 |
|---|---|---|
| committer | pml68 <tutorialmester@gmail.com> | 2024-03-29 11:35:07 +0100 |
| commit | 738729f073024040fb146b5aff0585f3be972172 (patch) | |
| tree | f56d18b7a9c040732c4c1f61dfd0f63f863de847 /lua/pml68/configs | |
| parent | docs: I'm no Windows user(jk). Also, consistency (diff) | |
| download | nvim-738729f073024040fb146b5aff0585f3be972172.tar.gz | |
feat: add a few pyright options, enable treesitter highlighting by default
Diffstat (limited to '')
| -rwxr-xr-x | lua/pml68/configs/settings/pyright.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/pml68/configs/settings/pyright.lua b/lua/pml68/configs/settings/pyright.lua index da468c7..9589fb6 100755 --- a/lua/pml68/configs/settings/pyright.lua +++ b/lua/pml68/configs/settings/pyright.lua @@ -1,3 +1,12 @@ return { single_file_support = true, + settings = { + python = { + analysis = { + autoSearchPaths = true, + diagnosticMode = "workspace", + useLibraryCodeForTypes = true, + }, + }, + }, } |
