-
Notifications
You must be signed in to change notification settings - Fork 163
zshrc
Song Zheng edited this page Dec 11, 2022
·
2 revisions
Bash scripts
# Productivity Alias
alias .="ls"
alias ..="cd .."
alias tls="tmux ls"
# https://ostechnix.com/bash-tips-how-to-cd-and-ls-in-one-command/
# ld path will run cd and ls
ld() {
local dir="$1"
local dir="${dir:=$HOME}"
if [[ -d "$dir" ]]; then
cd "$dir" >/dev/null; ls --color=auto
else
echo "bash: cdls: $dir: Directory not found"
fi
}
-
System Setup - Includes
git
,bash
etc. - VIM Config
- Computer Setup - List of applications that are useful to install