dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 9fb12a83f22e710e7e14c186409cbaea13e07dbd
parent 8114d341e9726021c877ffc9185b733ff12b0669
Author: Chris Bracken <chris@bracken.jp>
Date:   Tue, 28 Mar 2017 17:50:21 -0700

Add GOMA_DIR, inject into PATH

Diffstat:
M.paths | 3+++
M.zshrc | 1+
2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/.paths b/.paths @@ -42,5 +42,8 @@ if [[ "$(uname)" == "Darwin" ]]; then path_prepend "$HOME/.homebrew/bin" fi +# Goma +path_prepend "$GOMA_DIR" + # User's personal bin dir if it exists path_prepend "$HOME/bin" diff --git a/.zshrc b/.zshrc @@ -5,6 +5,7 @@ export EDITOR=/usr/bin/vim export GNUPGHOME="$HOME/.gnupg" export TERMINAL=urxvt export GREP_OPTIONS="--color=auto" +export GOMA_DIR="$HOME/bin/goma" # p4 config export P4CONFIG=.p4config