Added bufdel and render-markdown plugins, and fixed dap issues

This commit is contained in:
Ward Truyen
2025-05-28 17:17:09 +02:00
parent 28576e17d5
commit bf6e8e038b
4 changed files with 95 additions and 44 deletions

View File

@@ -0,0 +1,9 @@
--$ This allows buffers to be closed but not the window
--$ URL: https://github.com/ojroques/nvim-bufdel
return {
"ojroques/nvim-bufdel",
version = "*",
config = function()
vim.keymap.set("n", "<leader>bc", vim.cmd.BufDel)
end,
}