13 lines
217 B
Shell
13 lines
217 B
Shell
#!/usr/bin/env zsh
|
|
|
|
alias ls='ls --color=auto'
|
|
export LSCOLORS='Exgxbxdxcxegedabagacad'
|
|
|
|
export EDITOR='hx'
|
|
export VISUAL=$EDITOR
|
|
|
|
alias units='gunits --verbose'
|
|
alias date='gdate'
|
|
alias awk='gawk'
|
|
|
|
source ~/.profile
|