Configure DAP

This commit is contained in:
Vaclav Uruba 2025-05-22 17:42:17 -06:00
parent a6eff62aaa
commit 9b3b22a0d6
Signed by: uruba
GPG Key ID: 9D8E987C4B2E1E9C

View File

@ -26,6 +26,7 @@ return {
"theHamsta/nvim-dap-virtual-text", "theHamsta/nvim-dap-virtual-text",
opts = {}, opts = {},
}, },
"jay-babu/mason-nvim-dap.nvim",
}, },
keys = { keys = {
{ {
@ -191,13 +192,12 @@ return {
-- mason.nvim integration -- mason.nvim integration
{ {
"jay-babu/mason-nvim-dap.nvim", "jay-babu/mason-nvim-dap.nvim",
dependencies = "mason.nvim", dependencies = { "mason-org/mason.nvim" },
cmd = { "DapInstall", "DapUninstall" }, lazy = true,
opts = { opts = {
-- Makes a best effort to setup the various debuggers with -- Makes a best effort to setup the various debuggers with
-- reasonable debug configurations -- reasonable debug configurations
automatic_installation = true, automatic_installation = true,
automatic_config = true,
-- You can provide additional configuration to the handlers, -- You can provide additional configuration to the handlers,
-- see mason-nvim-dap README for more information -- see mason-nvim-dap README for more information