mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-03-20 03:13:33 +01:00
bugfix
This commit is contained in:
parent
2ca2876be5
commit
1c8d73147d
1 changed files with 4 additions and 1 deletions
5
zshrc
5
zshrc
|
|
@ -132,7 +132,10 @@ else
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$OS_TYPE" == "FreeBSD" ]]; then
|
if [[ "$OS_TYPE" == "FreeBSD" ]]; then
|
||||||
alias ls='ls -al -F'
|
if hash gls >/dev/null 2>&1; then
|
||||||
|
alias ls='gls -al -F'
|
||||||
|
LS_COMMAND=gls
|
||||||
|
fi
|
||||||
CLICOLOR=1; export CLICOLOR
|
CLICOLOR=1; export CLICOLOR
|
||||||
alias portinstall="sudo make config-recursive install clean clean-depends"
|
alias portinstall="sudo make config-recursive install clean clean-depends"
|
||||||
if hash gdircolors >/dev/null 2>&1; then
|
if hash gdircolors >/dev/null 2>&1; then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue