diff --git a/wezterm/.config/wezterm/wezterm.lua b/wezterm/.config/wezterm/wezterm.lua index 950624b..738c9b5 100644 --- a/wezterm/.config/wezterm/wezterm.lua +++ b/wezterm/.config/wezterm/wezterm.lua @@ -27,5 +27,17 @@ return { mods = 'CTRL|SHIFT', action = wezterm.action.ReloadConfiguration, }, + -- Spawn panes in the **DEFAULT** domain + -- to use the current domain, use Ctrl + Alt + Shift + " or % + { + key = '"', + mods = 'CTRL|SUPER|ALT|SHIFT', + action = wezterm.action.SplitVertical { domain = 'DefaultDomain' }, + }, + { + key = '%', + mods = 'CTRL|SUPER|ALT|SHIFT', + action = wezterm.action.SplitHorizontal { domain = 'DefaultDomain' }, + }, }, }