From 4e7bb134df65247afd8e32f02e1212c84b5f694a Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sun, 10 Nov 2024 18:49:48 -0800 Subject: [PATCH] feat(tmux): Add shell abbreviations --- home/programs/tmux.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home/programs/tmux.nix b/home/programs/tmux.nix index 39b143e..2d749a2 100644 --- a/home/programs/tmux.nix +++ b/home/programs/tmux.nix @@ -142,4 +142,9 @@ bind -T copy-mode-vi Escape if-shell -F '#{selection_present}' 'send -X clear-selection' 'send -X cancel' ''; }; + + home.shellAbbrs = { + tmain = "tmux new -s main -A"; + tmobile = "tmux new -s mobile -A"; + }; }