fix(keymaps): add missing wk entries for buffer switching; lowercase UI in menu (#45)

Co-authored-by: Andreas Gerlach <andreas.gerlach@xarvio.com>
This commit is contained in:
Andreas Gerlach 2023-01-11 19:58:58 +01:00 committed by GitHub
parent ed87ba777f
commit 46dba8f67e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View file

@ -46,6 +46,8 @@ return {
init = function()
vim.keymap.set("n", "<s-h>", "<cmd>BufferLineCyclePrev<cr>", { desc = "Prev Buffer" })
vim.keymap.set("n", "<s-l>", "<cmd>BufferLineCycleNext<cr>", { desc = "Next Buffer" })
vim.keymap.set("n", "<leader>b[", "<cmd>BufferLineCyclePrev<cr>", { desc = "Previous" })
vim.keymap.set("n", "<leader>b]", "<cmd>BufferLineCycleNext<cr>", { desc = "Next" })
end,
opts = {
options = {