astro-nvim-v3 - prevent dap ui close when session terminate

This commit is contained in:
huyjaky
2025-01-04 11:15:35 +07:00
parent 1de506b619
commit 4d76fdc8c3
9 changed files with 60 additions and 44 deletions

View File

@@ -7,10 +7,12 @@ return {
settings = {
basedpyright = {
disableOrganizeImports = true,
analysis = {
-- diagnosticMode = "workspace",
diagnosticMode = "openFilesOnly",
typeCheckingMode = "off",
typeCheckingMode = "basic",
autoImportCompletions = false,
autoSearchPath = false,
logLevel = "error",
@@ -18,15 +20,20 @@ return {
inlayHints = {
variableTypes = true,
functionReturnTypes = true,
callArgumentNames = true,
callArgumentNames = false,
pytestParameters = true,
},
useLibraryCodeForTypes = false,
strictListInference = true,
strictDictionaryInference = true,
deprecateTypingAliases = false,
enableReachabilityAnalysis = false,
strictListInference = true,
strictDictionaryInference = true,
strictSetInference = true,
analyzeUnannotatedFunctions = false,
-- ignore = { "**/*.py" },
diagnosticSeverityOverrides = {
reportUnusedImport = "none",
reportUnusedFunction = "none",