mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 08:35:48 +02:00
update debug
This commit is contained in:
parent
d0298906e6
commit
e42d5cbc43
5 changed files with 61 additions and 2 deletions
|
@ -362,4 +362,25 @@ return {
|
|||
ft = { "markdown" },
|
||||
cmd = { "MarkdownPreview", "MarkdownPreviewStop", "MarkdownPreviewToggle" },
|
||||
},
|
||||
-- Start Debuger
|
||||
{
|
||||
"mfussenegger/nvim-dap",
|
||||
enabled = vim.fn.has("win32") == 1,
|
||||
},
|
||||
{
|
||||
"rcarriga/nvim-dap-ui",
|
||||
enabled = vim.fn.has("win32") == 1,
|
||||
dependencies = "mfussenegger/nvim-dap",
|
||||
config = function()
|
||||
require("user.dapui")
|
||||
end,
|
||||
},
|
||||
{
|
||||
"jayp0521/mason-nvim-dap.nvim",
|
||||
enabled = vim.fn.has("win32") == 1,
|
||||
dependencies = "mfussenegger/nvim-dap",
|
||||
config = function()
|
||||
require("user.mason-nvim-dap")
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue