From 805c95bdea5bd5feb08d9e26c780e4b1eb624cc3 Mon Sep 17 00:00:00 2001 From: Anton Bobov Date: Fri, 7 Feb 2025 00:09:03 +0500 Subject: zsh: Change mux alias to tmuxp Replace tmuxinator with tmuxp. --- files/.zsh/rc/S50_aliases | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/files/.zsh/rc/S50_aliases b/files/.zsh/rc/S50_aliases index 39fe39f..0717361 100644 --- a/files/.zsh/rc/S50_aliases +++ b/files/.zsh/rc/S50_aliases @@ -112,7 +112,11 @@ alias v='vim' alias vp='vim -c "setlocal buftype=nofile bufhidden=hide noswapfile buflisted" -' alias sv='sudo -e' alias t='tmux new-session -A -s main' -alias mux='tmuxinator' +if is_command tmuxp; then + alias mux='tmuxp load -y' +elif is_command tmuxinator; then + alias mux='tmuxinator' +fi alias scratch='vim -c Scratch +startinsert' alias scratchmd='scratch -c "set ft=markdown"' alias rscp='rsync -rlptDvzhP' -- cgit v1.2.3