summaryrefslogtreecommitdiff
path: root/lua/maps/buffer.lua
blob: 99a11f6c5062b89c474aeed7b853d107b2ae6b53 (plain)
1
2
3
4
5
6
-- Close the current buffer
vim.api.nvim_set_keymap(
	"n",
	"<leader>q", ":lua close_current_buffer()<CR>",
	{ silent = true, noremap = true }
)