You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
306 B
14 lines
306 B
local M = { |
|
"famiu/bufdelete.nvim", |
|
event = "VeryLazy", |
|
} |
|
|
|
function M.config() |
|
local keymap = vim.keymap.set |
|
local opts = { noremap = true, silent = true } |
|
-- keymap("n", "Q", "<cmd>Bdelete!<CR>", opts) |
|
keymap("n", "Q", ":lua require('bufdelete').bufdelete(0, false)<cr>", opts) |
|
|
|
end |
|
|
|
return M
|
|
|