Skip to content

Instantly share code, notes, and snippets.

@oldsharp
Last active March 31, 2017 01:04
Show Gist options
  • Save oldsharp/d19874ebcd619a721687 to your computer and use it in GitHub Desktop.
Save oldsharp/d19874ebcd619a721687 to your computer and use it in GitHub Desktop.
profile for logging shells
# User-specified .profile file for Apple Terminal.
# Set architecture flags:
export ARCHFLAGS="-arch x86_64"
# Ensure user-installed binaries take precedence:
#export PATH="/usr/local/bin:${PATH}"
# Enable terminal color when ls
export CLICOLOR=1
#export LSCOLORS=GxFxCxDxBxegedabagaced
#export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx
export LSCOLORS=ExGxBxDxCxEgEdxbxgxcxd
# Set golang env variable:
export GOROOT="/usr/local/opt/go/libexec"
export GOPATH="${HOME}/go"
export PATH="${PATH}:${GOROOT}/bin:${GOPATH}/bin"
# Expose GNU gettext binaries:
export PATH="${PATH}:/usr/local/Cellar/gettext/0.19.8.1/bin"
# Load .bashrc if it exists:
test -f ~/.bashrc && source ~/.bashrc
Initial commit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment