Created
December 20, 2018 15:29
-
-
Save fvumbaca/f4188dd7aa95d2216151027a1764119e to your computer and use it in GitHub Desktop.
Zshrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Paths | |
| export PATH=$HOME/bin:/usr/local/bin:$PATH | |
| export ZSH="/Users/frankv/.oh-my-zsh" | |
| export SSH_KEY_PATH="~/.ssh/rsa_id" | |
| export GOPATH=$HOME/go | |
| export PATH=$PATH:$GOPATH/bin | |
| # Theme | |
| ZSH_THEME="clean" | |
| # ZSH | |
| export UPDATE_ZSH_DAYS=7 | |
| COMPLETION_WAITING_DOTS="true" | |
| HIST_STAMPS="mm-dd-yyyy" | |
| plugins=( | |
| git | |
| ) | |
| source $ZSH/oh-my-zsh.sh | |
| # User configuration | |
| export LANG=en_US.UTF-8 | |
| export EDITOR='vim' | |
| alias dev='cd ~/Dev' | |
| alias cls='clear;pwd;ls' | |
| alias gitree='git log --oneline --graph --decorate --all' | |
| if [ /usr/local/bin/kubectl ]; then source <(kubectl completion zsh); fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment