mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-25 16:49:28 +00:00
13 lines
358 B
Bash
13 lines
358 B
Bash
# OSX aliases
|
|
if [[ $(uname) == "Darwin" ]]; then
|
|
alias ls="ls -FG"
|
|
alias code="code-insiders"
|
|
alias flushdns="sudo dscacheutil -flushcache && sudo killall -HUP mDNSResponder"
|
|
else
|
|
alias ls="ls -F --color=auto"
|
|
fi
|
|
|
|
alias t='(tmux has-session 2>/dev/null && tmux attach) || (tmux new-session)'
|
|
alias tma="tmux attach"
|
|
alias last="last | head"
|