-
Notifications
You must be signed in to change notification settings - Fork 8
/
.zshrc
32 lines (25 loc) · 777 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
ZSH=$HOME/.oh-my-zsh
if [ -d /usr/share/oh-my-zsh ]; then
ZSH=/usr/share/oh-my-zsh
fi
export EDITOR='vim'
export HISTSIZE=1000000000
export SAVEHIST=$HISTSIZE
setopt EXTENDED_HISTORY SHARE_HISTORY
if [ -d /opt/asdf-vm ]; then
ASDF_DIR=/opt/asdf-vm
fi
ZSH_THEME="robbyrussell"
HYPHEN_INSENSITIVE="true"
CASE_SENSITIVE="false"
COMPLETION_WAITING_DOTS="true"
ZSH_TMUX_AUTOSTART=true
ZSH_TMUX_UNICODE=true
HIST_STAMPS="yyyy-mm-dd"
DISABLE_UPDATE_PROMPT="true"
# Plugins can be found in ~/.oh-my-zsh/plugins/*
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
plugins=(git github rails bundler terraform tmux tmuxinator asdf docker docker-compose \
ssh-agent heroku aws gh fzf)
source $ZSH/oh-my-zsh.sh
[ -f ~/.zsh_aliases ] && source ~/.zsh_aliases