16 lines
511 B
Lua
16 lines
511 B
Lua
return {
|
|
'axkirillov/hbac.nvim',
|
|
config = true,
|
|
opts = {
|
|
autoclose = true, -- set autoclose to false if you want to close manually
|
|
threshold = 32, -- hbac will start closing unedited buffers once that number is reached
|
|
close_command = function(bufnr)
|
|
vim.api.nvim_buf_delete(bufnr, {})
|
|
end,
|
|
close_buffers_with_windows = false, -- hbac will close buffers with associated windows if this option is `true`
|
|
telescope = {
|
|
-- See #telescope-configuration below
|
|
},
|
|
},
|
|
}
|