diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-05-14 16:41:07 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-05-16 10:39:51 -0300 |
commit | d8f4700538e8b7ac767daeaf13da9a119569a817 (patch) | |
tree | f26b1c6773668e2446282f7e5824db8ce559fafd | |
parent | ff92128df187172e6bc75fa4865b884c4a27956c (diff) |
zsh: 'tm' alias
-rw-r--r-- | .zshrc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.zshrc b/.zshrc index a0773eb..07f6245 100644 --- a/.zshrc +++ b/.zshrc @@ -115,6 +115,12 @@ export PATH # //// aliases & non-script functions //////////////////////// <alias-fns> // # +# -- cli shenanigans -- + +alias tm='tmux attach \; choose-tree -s && exit' + +# -- file management utilities -- + relink() { inode1=$(ls -i $1 | cut -d " " -f 1) && inode2=$(ls -i $2 | cut -d " " -f 1) && |