make some mapping keybinds lowercased (#1897)

This commit is contained in:
siduck 2023-04-05 22:07:36 +05:30
parent 3479853e69
commit 907b112514
1 changed files with 2 additions and 2 deletions

View File

@ -70,14 +70,14 @@ M.tabufline = {
n = {
-- cycle through buffers
["<TAB>"] = {
["<tab>"] = {
function()
require("nvchad_ui.tabufline").tabuflineNext()
end,
"goto next buffer",
},
["<S-Tab>"] = {
["<S-tab>"] = {
function()
require("nvchad_ui.tabufline").tabuflinePrev()
end,