From 59044237eea0f9673a1e9a1e31396744c7522d5b Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Sun, 4 Aug 2024 02:28:10 -0700 Subject: [PATCH] tmux: tmux a fish abbreviation --- home/modules/tmux.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/modules/tmux.nix b/home/modules/tmux.nix index 4918a12..feeb6f7 100644 --- a/home/modules/tmux.nix +++ b/home/modules/tmux.nix @@ -41,5 +41,9 @@ in ${lib.optionalString sessionizer.enable ''bind-key -r f run-shell "tmux neww ${sessionizer.pkg}/bin/tmux-sessionizer"''} ''; }; + + programs.fish.shellAbbrs = { + a = "tmux a"; + }; }; }