1
0
Fork 0
env/.zshrc

18 lines
231 B
Bash
Raw Normal View History

2018-04-01 17:06:16 +08:00
# zsh settings
setopt appendhistory
setopt autocd
setopt extendedglob
2018-04-01 18:06:48 +08:00
export TERM=xterm-256color
2018-04-01 17:06:16 +08:00
2018-04-02 12:40:37 +08:00
# pure
autoload -U promptinit; promptinit
prompt pure
2018-04-01 17:06:16 +08:00
# golang
export PATH="$(go env GOPATH)/bin:$PATH"
# aliases
alias vim=nvim