Last active
September 23, 2019 23:54
-
-
Save jsteenb2/12ed40de96bdc9311915a9b13794a94e to your computer and use it in GitHub Desktop.
This file contains 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
# Path to your oh-my-zsh installation. | |
export ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
# ZSH_THEME="powerlevel9k/powerlevel9k" | |
ZSH_THEME="agnoster" | |
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) | |
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ | |
# Example format: plugins=(rails git textmate ruby lighthouse) | |
# Add wisely, as too many plugins slow down shell startup. | |
# plugins=( | |
# git, | |
# docker, | |
# brew, | |
# kubectl, | |
# golang, | |
# aws, | |
# httpie, | |
# npm, | |
# nvm, | |
# yarn, | |
# osx, | |
# pip, | |
# python | |
# ) | |
# fpath+=($ZSH/plugins/docker) | |
# autoload -U compinit && compinit | |
export GOPATH=$HOME/go | |
export GOBIN=$GOPATH/bin | |
export GO111MODULE=auto | |
source $ZSH/oh-my-zsh.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment