From eb7d49c0caf57da99be9e3b5d870266d4ec989ac Mon Sep 17 00:00:00 2001 From: Greg Date: Thu, 5 Mar 2026 13:50:49 +0200 Subject: [PATCH] crtl tab --- .config/nvim/lua/keymaps.lua | 2 +- .config/wezterm/wezterm.lua | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) 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