add zshrc

This commit is contained in:
James Dixon 2022-05-09 18:37:17 -04:00
parent 4d7106fd1f
commit dbd037c24f

View File

@ -13,7 +13,7 @@ GREP_OPTS="--color=auto"
EDITOR=vim EDITOR=vim
VISUAL=vim VISUAL=vim
PAGER=less PAGER=less
PROMPT='%n@%m %~ %# ' # PROMPT='%n@%m %~ %# '
## Shell Options ## ## Shell Options ##
@ -82,3 +82,8 @@ alias untar="tar -xvf"
alias mktar="tar -caf" alias mktar="tar -caf"
alias tarls="tar -tvf" alias tarls="tar -tvf"
alias ungzip="gunzip" alias ungzip="gunzip"
# ruby
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
PATH+=":/Users/james/Library/Python/3.8/bin"