Fix ls colors.
This commit is contained in:
parent
e17df66e63
commit
7772bf30b3
1 changed files with 6 additions and 2 deletions
|
@ -1,7 +1,11 @@
|
|||
autoload -U compinit && compinit
|
||||
setopt correct_all
|
||||
alias ll='ls -lh'
|
||||
autoload -U compinit && compinit
|
||||
if [[ "$OSTYPE" == (darwin|freebsd)* ]]; then
|
||||
alias ls='ls -G'
|
||||
elif [[ "$OSTYPE" == linux* ]]; then
|
||||
alias ls='ls --color=tty'
|
||||
fi
|
||||
alias ll='ls -lh'
|
||||
source ~/.zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
|
||||
source ~/.zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||
source ~/.zsh/themes/slimline/slimline.zsh
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue