dotfiles/.zshrc

29 lines
462 B
Bash
Raw Normal View History

2020-08-07 02:31:18 +00:00
if [[ "$(uname)" == "Darwin" ]]; then
export ZSH="/Users/$(whoami)/.oh-my-zsh"
elif [[ "$(expr substr $(uname -s) 1 5)" == "Linux" ]]; then
export ZSH="/home/$(whoami)/.oh-my-zsh"
fi
2020-08-07 01:55:01 +00:00
ZSH_THEME="robbyrussell"
2020-08-07 02:31:18 +00:00
ZSH_DISABLE_COMPFIX="true"
2020-08-07 01:55:01 +00:00
plugins=(
git
z
zsh-autosuggestions
sudo
thefuck
redis-cli
kubectl
helm
golang
flutter
docker
doctl
docker-compose
cargo
ansible
)
source $ZSH/oh-my-zsh.sh