diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua index f3ee042..3574a18 100644 --- a/wezterm/wezterm.lua +++ b/wezterm/wezterm.lua @@ -61,6 +61,24 @@ config.font_size = 12 config.line_height = 1.0 config.freetype_load_target = "Light" +config.keys = { + { + key = "V", + mods = "CTRL|SHIFT|ALT", + action = wezterm.action.SplitVertical({ domain = "CurrentPaneDomain" }), + }, + { + key = "H", + mods = "CTRL|SHIFT|ALT", + action = wezterm.action.SplitHorizontal({ domain = "CurrentPaneDomain" }), + }, + { + key = "Q", + mods = "CTRL|SHIFT|ALT", + action = wezterm.action.CloseCurrentPane({ confirm = true }), + }, +} + -------------------------------------------------------------------------------- -- borrowed from: https://github.com/protiumx/.dotfiles/blob/main/stow/wezterm/.config/wezterm/wezterm.lua