Skip to content

Instantly share code, notes, and snippets.

@kavichu
Created September 3, 2019 01:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kavichu/c6beba0b4ac41cf1413c7df0929b8994 to your computer and use it in GitHub Desktop.
Save kavichu/c6beba0b4ac41cf1413c7df0929b8994 to your computer and use it in GitHub Desktop.
Env File
#!/bin/zsh
export CLICOLOR=1
export WORKON_HOME=$HOME/.virtualenvs
export PROJECT_HOME=$HOME/Devel
source /usr/local/bin/virtualenvwrapper.sh
export GOROOT=/usr/local/go
export PATH=$GOROOT/bin:$PATH
export GOPATH=/Users/kavichu/workspace/go-workspace
export PATH=$PATH:$GOPATH/bin
export ENV=local
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
export EDITOR=vim
function f() { find . -iname "*$1*" ${@:2} }
function r() { grep "$1" ${@:2} -R . }
function mkcd() { mkdir -p "$@" && cd "$_"; }
alias cppcompile='c++ -std=c++11 -stdlib=libc++'
alias g='git'
alias k='kubectl'
alias dc='docker-compose'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment