diff --git a/modules/common/applications/wezterm.nix b/modules/common/applications/wezterm.nix index 7fee8ee..61dc01e 100644 --- a/modules/common/applications/wezterm.nix +++ b/modules/common/applications/wezterm.nix @@ -161,6 +161,20 @@ mods = 'SUPER', action = wezterm.action.ToggleFullScreen }, + -- super-t open new tab in new dir + { + key = 't', + mods = 'SUPER', + action = wezterm.action.SpawnCommandInNewTab { + cwd = wezterm.home_dir, + }, + }, + -- shift-super-t open new tab in same dir + { + key = 't', + mods = 'SUPER|SHIFT', + action = wezterm.action.SpawnTab 'CurrentPaneDomain' + }, -- project switcher { key = 'P',