from-scratch rewrite #1

Merged
kenobi merged 54 commits from from-scratch into master 2025-06-26 08:53:34 +02:00
48 changed files with 1417 additions and 735 deletions
Showing only changes of commit dc74cfc951 - Show all commits

26
nvim/lua/plugins/dap.lua Normal file
View File

@ -0,0 +1,26 @@
return {
"mfussenegger/nvim-dap",
lazy = true,
dependencies = {
"rcarriga/nvim-dap-ui",
"nvim-neotest/nvim-nio",
"theHamsta/nvim-dap-virtual-text"
},
keys = {
{
"<leader>db",
function()
require("dap").toggle_breakpoint()
end,
},
{
"<leader>dc",
function()
require("dap").continue()
end,
},
},
config = function()
require("dapui").setup()
end,
}