mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-13 09:42:27 +00:00
13 lines
347 B
Bash
13 lines
347 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"
|