From 05b26d29c97b776bb85f8299fd7e00dc6743f098 Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Tue, 27 Aug 2024 15:25:50 +0200 Subject: [PATCH] add tmux abbreviation --- home/base/shell/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/base/shell/fish.nix b/home/base/shell/fish.nix index 68cc18d..d3cf4ff 100644 --- a/home/base/shell/fish.nix +++ b/home/base/shell/fish.nix @@ -16,7 +16,7 @@ in fish_vi_key_bindings # Enable Vi mode fish_config theme choose "Catppuccin Frappe" ''; - shellAbbrs = { cd = "z"; ngc = "sudo nix-collect-garbage -d"; }; + shellAbbrs = { cd = "z"; ngc = "sudo nix-collect-garbage -d"; tmux = "tmux new -A -s main"; }; plugins = [ { name = "fzf"; src = pkgs.fishPlugins.fzf.src; } ]; };