first commit

This commit is contained in:
2026-07-08 18:23:00 -07:00
commit 1a69f28eb8
13 changed files with 1116 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/bin/bash
# Bash aliases for the claudaris container
# ls long hidden and human readable
alias ll='ls -lah'
alias l1='ls -1'
alias ls='ls --color=auto'
# up levels (up #_of_dir_up)
function cd_up() {
cd $(printf "%0.0s../" $(seq 1 $1));
}
alias up='cd_up'
# or just ctrl+d
alias quit='exit'
alias e='exit'
# tmux
alias tl='tmux list-sessions'
# git
alias gs='git status'
alias btw='fastfetch'
alias cd='z'