Skip to content

Instantly share code, notes, and snippets.

@fvumbaca
Created December 20, 2018 15:29
Show Gist options
  • Select an option

  • Save fvumbaca/f4188dd7aa95d2216151027a1764119e to your computer and use it in GitHub Desktop.

Select an option

Save fvumbaca/f4188dd7aa95d2216151027a1764119e to your computer and use it in GitHub Desktop.
Zshrc
# 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