zsh-config/zsh/aliases/20-freebsd.conf

9 lines
281 B
Plaintext
Raw Permalink Normal View History

2017-01-15 11:57:15 +05:00
# Some good aliases for FreeBSD.
if [ "${OS/FreeBSD}" != "${OS}" ]; then
# Files navigation.
alias ls="ls -G"
# mc having troubles with subshells and normal users accounts.
# Force an alias that will launch mc without subshell capabilities.
alias mc="mc -u"
2017-01-15 11:57:15 +05:00
fi