diff options
author | Francisco Suárez <[email protected]> | 2021-05-03 15:37:12 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2021-05-03 16:37:12 -0400 |
commit | 3adcfdc0346546c102c370aa12549fafe2be5cb8 (patch) | |
tree | cddeb2eae47ec933149b416b61b72bb0a103707c /lua/lv-globals.lua | |
parent | 2ca5944956fe4d7f6a3855575402cc8f303b72a0 (diff) |
✨ Python analysis options (pyright) (#352)
Diffstat (limited to 'lua/lv-globals.lua')
-rw-r--r-- | lua/lv-globals.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/lv-globals.lua b/lua/lv-globals.lua index dedf397b..b968589a 100644 --- a/lua/lv-globals.lua +++ b/lua/lv-globals.lua @@ -24,7 +24,8 @@ O = { formatter = '', autoformat = false, isort = false, - diagnostics = {virtual_text = true, signs = true, underline = true} + diagnostics = {virtual_text = true, signs = true, underline = true}, + analysis = {type_checking = "basic", auto_search_paths = true, use_library_code_types = true} }, dart = {sdk_path = '/usr/lib/dart/bin/snapshots/analysis_server.dart.snapshot'}, lua = { |