Created
May 18, 2013 07:02
-
-
Save ordovician/5603534 to your computer and use it in GitHub Desktop.
My configuration file for the fish shell
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
# Make the blue color for directories more readable | |
set -x LSCOLORS Exfxcxdxbxegedabagacad | |
# this is needed to avoid strange python stack backtrace complaining about UTF-8 when | |
# running sphinx. Found it by googling | |
set -x LC_ALL en_US.UTF-8 | |
set -x LANG en_US.UTF-8 | |
set -x JULIA_EDITOR textmate | |
# so our brew install override the commands from the system | |
set PATH /usr/local/bin $PATH | |
# colon separated list of places were one might find go source code or installed packages | |
# first path is used for package installation | |
set -x GOPATH $HOME/Development/go | |
# So we can run go commands and go programs we have compiled ourselves | |
set -x PATH $PATH /usr/local/go/bin $GOPATH/bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment