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

@@ -12,7 +12,7 @@ return {
autoformat = false, -- enable or disable auto formatting on start
codelens = false, -- enable/disable codelens refresh on start
inlay_hints = false, -- enable/disable inlay hints on start
semantic_tokens = true, -- enable/disable semantic token highlighting
semantic_tokens = false, -- enable/disable semantic token highlighting
},
-- customize lsp formatting options
formatting = require "plugins.configs.lsp.formatting",
@@ -23,16 +23,23 @@ return {
config = {
-- clangd = require "plugins.configs.lsp.config.clangd",
basedpyright = require "plugins.configs.lsp.config.basedpyright",
jedi_language_server = {
init_options = {
completion = {
-- disableSnippets = true,
},
diagnostics = {
enable = false,
}
},
jediSettings = {
autoImportModules = {
"numpy",
"pandas",
"torch",
"sklearn",
},
},
},
},
ruff = {
@@ -71,7 +78,8 @@ return {
"TD003",
"FIX002",
"N803",
"PD901"
"PD901",
"F401",
},
fixable = { "ALL" },
},