diff --git a/lua/lazyvim/plugins/extras/editor/buffer-jump.lua b/lua/lazyvim/plugins/extras/editor/buffer-jump.lua new file mode 100644 index 00000000..33bf7f77 --- /dev/null +++ b/lua/lazyvim/plugins/extras/editor/buffer-jump.lua @@ -0,0 +1,17 @@ +return { + "Masalale/buffer-jump.nvim", + opts = { + width = 55, + max_height = 12, + border = "rounded", + }, + keys = { + { + "bj", + function() + require("buffer-jump").jump_to_buffer() + end, + desc = "Jump to Buffer", + }, + }, +}