-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zshrc
35 lines (31 loc) · 865 Bytes
/
.zshrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# alias c="cd"
alias l="ls -l"
alias ..="c .."
alias ...="c ..."
alias ....="c ...."
alias o="open"
alias g="git"
alias gs="git status"
alias gch="git checkout"
alias ga="git add"
alias gc="git commit -m"
alias gb="git branch"
alias gp="git push"
alias gl="git pull"
alias gf="git fetch"
alias glog="git log --oneline"
alias uuum="cd ~/uuum"
alias trivials="cd ~/trivials"
alias dc="docker container"
# alias c="docker"
source ~/zsh-git-prompt/zshrc.sh
# PS1=$'\e[0;31m$ \e[0m'
PROMPT='%K{5}%~%b%k$(git_super_status)
$ '
RPROMPT='%*'
c() { cd "$@" && ls; }
export PATH=$HOME/.nodebrew/current/bin:$PATH
export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/shims:$PATH"
# heroku autocomplete setup
HEROKU_AC_ZSH_SETUP_PATH=/Users/${USER}/Library/Caches/heroku/autocomplete/zsh_setup && test -f $HEROKU_AC_ZSH_SETUP_PATH && source $HEROKU_AC_ZSH_SETUP_PATH;