diff --git a/.config/nvim/lua/keymaps.lua b/.config/nvim/lua/keymaps.lua index 18b2d69..1573125 100644 --- a/.config/nvim/lua/keymaps.lua +++ b/.config/nvim/lua/keymaps.lua @@ -36,7 +36,7 @@ end) map("n", "", "", { silent = true, desc = "go back with mouse" }) map("n", "", "", { silent = true, desc = "go forward with mouse" }) -map("n", "bb", "e #", { desc = "Switch to Other Buffer" }) +map("n", "", "e #", { desc = "Switch to Other Buffer" }) -- Keybindings to make split navigation easier. -- Use CTRL+ to switch between windows diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua index 3c324cc..73cdaf6 100644 --- a/.config/wezterm/wezterm.lua +++ b/.config/wezterm/wezterm.lua @@ -45,6 +45,11 @@ config.keys = { mods = "ALT", action = wezterm.action.DisableDefaultAssignment, }, + { + key = "Tab", + mods = "CTRL", + action = wezterm.action.DisableDefaultAssignment, + }, } -- and finally, return the configuration to wezterm