mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
feat(extras): add buffer-jump extra for LunarVim-style buffer picker
This commit is contained in:
parent
c64a61734f
commit
728bc2abc5
1 changed files with 17 additions and 0 deletions
17
lua/lazyvim/plugins/extras/editor/buffer-jump.lua
Normal file
17
lua/lazyvim/plugins/extras/editor/buffer-jump.lua
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
return {
|
||||||
|
"Masalale/buffer-jump.nvim",
|
||||||
|
opts = {
|
||||||
|
width = 55,
|
||||||
|
max_height = 12,
|
||||||
|
border = "rounded",
|
||||||
|
},
|
||||||
|
keys = {
|
||||||
|
{
|
||||||
|
"<leader>bj",
|
||||||
|
function()
|
||||||
|
require("buffer-jump").jump_to_buffer()
|
||||||
|
end,
|
||||||
|
desc = "Jump to Buffer",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue