-
Notifications
You must be signed in to change notification settings - Fork 0
/
.zshrc
45 lines (32 loc) · 849 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
36
37
38
39
40
41
42
43
44
45
# If you come from bash you might have to change your $PATH.
# export PATH=$HOME/bin:/usr/local/bin:$PATH
# Path to your oh-my-zsh installation.
export ZSH=~/.oh-my-zsh
ZSH_THEME="edd"
DISABLE_AUTO_TITLE="false"
COMPLETION_WAITING_DOTS="true"
PROMPT="\n$reset_color -"
plugins=(
git
autojump
tmux
dash
)
source $ZSH/oh-my-zsh.sh
zmodload zsh/complist
setopt no_share_history
# User configuration
export EDITOR='nvim'
export TEST_RETRY_COUNT=0
alias be='bundle exec '
alias grep='grep --color -n'
alias ls='ls -Gpa'
function gcbu() {
gcb $USER/$1
}
bindkey '^[[Z' reverse-menu-complete
bindkey -M menuselect '^M' .accept-line
eval "$(rbenv init - --no-rehash)"
eval "$(nodenv init -)"
export PATH="/usr/local/opt/node@8/bin:$PATH"
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH:$HOME/.cargo/bin"