Stanislav N
1288d9e542
Added alias for FreeBSD for mc launch as normal user, which may lack PTY access. Related to #6. Silenced gitinfo's errors on just-inited repo. Fixes #3.
9 lines
281 B
Plaintext
9 lines
281 B
Plaintext
# 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"
|
|
fi |