wezterm: update config

This commit is contained in:
Gabriel Arazas 2024-09-08 12:22:14 +08:00
parent 3df8b2cc1b
commit 7351df249f
2 changed files with 4 additions and 3 deletions

View File

@ -62,7 +62,7 @@ function module.apply_to_config(config)
-- Disable some more annoyances.
config.enable_tab_bar = true
config.enable_scroll_bar = false
config.tab_bar_at_bottom = true
config.tab_bar_at_bottom = false
config.window_decorations = "RESIZE"
-- Configuring the appearance of the tab bar.

View File

@ -78,6 +78,7 @@ function module.apply_to_config(config)
{ key = "DownArrow", mods = keymod, action = act.ActivatePaneDirection("Down") },
{ key = "UpArrow", mods = keymod, action = act.ActivatePaneDirection("Up") },
{ key = "RightArrow", mods = keymod, action = act.ActivatePaneDirection("Right") },
{ key = "^", mods = keymod, action = act.ActivateLastTab },
-- More pane-related niceties.
{ key = "f", mods = "LEADER", action = act.TogglePaneZoomState },