From e43f6cf0004fa0a96e34d270a71be435842f6232 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Sun, 18 Aug 2024 16:41:31 -0400 Subject: [PATCH] use alt-t for new wezterm tab on linux --- modules/common/applications/wezterm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/common/applications/wezterm.nix b/modules/common/applications/wezterm.nix index fd0b34a..5056383 100644 --- a/modules/common/applications/wezterm.nix +++ b/modules/common/applications/wezterm.nix @@ -169,7 +169,7 @@ -- super-t open new tab in new dir { key = 't', - mods = 'SUPER', + mods = ${if pkgs.stdenv.isDarwin then "'SUPER'" else "'ALT'"}, action = wezterm.action.SpawnCommandInNewTab { cwd = wezterm.home_dir, },