This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
case $OSTYPE in | |
darwin*) | |
alias ls="ls -G" | |
alias here="open ." | |
;; | |
linux*) | |
alias ls="ls --color" | |
alias free="free -m" | |
;; | |
esac |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# users generic .zshrc file for zsh(1) | |
autoload colors | |
colors | |
autoload -U compinit | |
compinit | |
export LSCOLORS=ExFxCxdxBxxxxxBxBxExEx | |
export LS_COLORS='di=01;34:ln=35:so=32:pi=33:ex=31:bd=46;34:cd=43;34:su=41;30:sg=46;30:tw=42;30:ow=43;30' | |
zstyle ':completion:*' list-colors 'di=01;34' 'ln=35' 'so=32' 'ex=31' 'bd=46;34' 'cd=43;34' 'su=41;30' 'sg=46;30' 'tw=42;30' 'ow=43;30' menu select=1 |