-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzshrc
45 lines (31 loc) · 1.09 KB
/
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
36
37
38
39
40
41
42
43
44
45
ZSH=$HOME/.oh-my-zsh
ZSH_THEME='sorin'
plugins=(brew autojump history ruby bundler gem zsh-syntax-highlighting)
source $ZSH/oh-my-zsh.sh
bindkey '[C' forward-word
bindkey '[D' backward-word
# http://robots.thoughtbot.com/how-to-use-arguments-in-a-rake-task
unsetopt nomatch
export EDITOR='e'
export GOPATH="$HOME/codes/go"
export ELIXIR_PATH="/usr/local/Cellar/elixir/1.3.2"
export PATH="$PATH:/usr/local/sbin"
export PATH="$PATH:/usr/local/heroku/bin"
export PATH="$PATH:$HOME/.cask/bin"
export PATH="$PATH:$GOPATH/bin"
export PATH="$PATH:$ELIXIR_PATH/bin"
export PATH="$PATH:$HOME/.bin"
# export PATH="$PATH:$HOME/.scripts"
# Heetch
export PATH="$GOPATH/src/github.com/heetch/universe/bin:$PATH"
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
export ERL_AFLAGS="-kernel shell_history enabled"
# load ~/.zshrc.local
[[ -s $HOME/.aliases.zsh ]] && source "$HOME/.aliases.zsh"
[[ -s $HOME/.zshrc.local ]] && source "$HOME/.zshrc.local"
# fzf config
[ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
export FZF_DEFAULT_OPTS='--height 40% --reverse'
source /usr/local/opt/asdf/asdf.sh