mirror of
https://github.com/nikdoof/dotfiles.git
synced 2025-12-13 17:52:26 +00:00
9 lines
131 B
Bash
9 lines
131 B
Bash
# OSX aliases
|
|
if [ $(uname) == "Darwin" ]; then
|
|
alias ls="ls -FG"
|
|
else
|
|
alias ls="ls -F --color=auto"
|
|
fi
|
|
|
|
alias tma="tmux attach"
|