add buf move command

This commit is contained in:
veypi 2023-09-15 15:50:09 +08:00
parent a19265f793
commit 6f8d987e48
3 changed files with 10 additions and 0 deletions

View File

@ -6,3 +6,6 @@
require("plugins")
require("options")
require("maps")
-- plugins cfg

View File

@ -0,0 +1 @@

View File

@ -15,3 +15,9 @@ lvim.keys.normal_mode["Q"] = ":qa!<CR>"
-- lvim.builtin.which_key.mappings["\["] = ":BufferLineCyclePrev<CR>"
-- nmap <leader>[ :BufferLineCyclePrev<CR>
-- nmap <leader>] :BufferLineCycleNext<CR>
lvim.builtin.which_key.mappings["["] = {
"<cmd>BufferLineCycleNext<CR>", "Projects"
}
lvim.builtin.which_key.mappings["]"] = {
"<cmd>BufferLineCyclePrev<CR>", "Projects"
}