mirror of
https://github.com/StepanovPlaton/dotfiles.git
synced 2026-04-03 20:30:46 +04:00
15 lines
385 B
Lua
15 lines
385 B
Lua
return {
|
|
{
|
|
"j-morano/buffer_manager.nvim",
|
|
dependencies = {
|
|
"nvim-lua/plenary.nvim",
|
|
},
|
|
opts = {},
|
|
keys = {
|
|
{ "<LEADER>b", function() require("buffer_manager.ui").toggle_quick_menu() end },
|
|
{ "<S-h>", function() require("buffer_manager.ui").nav_prev() end },
|
|
{ "<S-l>", function() require("buffer_manager.ui").nav_next() end }
|
|
}
|
|
}
|
|
}
|