Files
nvim-config/lua/ward/plugins/bufdel.lua

10 lines
242 B
Lua

--$ 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,
}