1
0
Fork 0

zsh, fish: zj funcion

This commit is contained in:
Von Random 2025-01-10 12:23:16 +02:00
parent 1d80af59ac
commit 983ff6a6e5
2 changed files with 4 additions and 0 deletions
dot_config
fish/functions
zsh

View file

@ -0,0 +1,3 @@
function zj
command zellij $argv
end

View file

@ -43,6 +43,7 @@ function tailf { command less +F $@ }
function grep { command grep --color=auto $@ } function grep { command grep --color=auto $@ }
function rgrep { grep --exclude-dir=.git -R $@ } function rgrep { grep --exclude-dir=.git -R $@ }
function s { termcompat ssh $@ } function s { termcompat ssh $@ }
function zj { command zellij $@ }
function tmux { command tmux -2 $@ } function tmux { command tmux -2 $@ }
function atmux { tmux attach || tmux } function atmux { tmux attach || tmux }