diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua index 4a55e29..2351057 100644 --- a/.config/wezterm/wezterm.lua +++ b/.config/wezterm/wezterm.lua @@ -149,6 +149,8 @@ return { }, }, + disable_default_key_bindings = true, + leader = { key="o", mods="CTRL|SHIFT", timeout_milliseconds=1000 }, keys = { @@ -159,6 +161,9 @@ return { {key="k", mods="LEADER", action=wezterm.action{CloseCurrentTab={confirm=true}}}, {key="l", mods="LEADER", action="ShowLauncher"}, + {key="-", mods="CTRL", action="DecreaseFontSize"}, + {key="=", mods="CTRL", action="IncreaseFontSize"}, + --[[ {key="LeftArrow", mods="CTRL", action=wezterm.action{ActivateTabRelative=-1}}, {key="RightArrow", mods="CTRL", action=wezterm.action{ActivateTabRelative=1}},