rice

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit ae963fac0a61232c9b63dde1f651168198bb5c10
parent 38cf0e12de4b00af7c31346490cfaf9dbc3e6663
Author: Mark Feller <mfeller@recurly.com>
Date:   Wed, 18 Dec 2019 13:35:25 -0700

cleanup dots

Signed-off-by: Mark Feller <mfeller@recurly.com>

Diffstat:
Mdots/.config/zsh/.zshrc | 2++
Adots/.config/zsh/gloud.zsh | 6++++++
Mdots/.profile | 3+--
3 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/dots/.config/zsh/.zshrc b/dots/.config/zsh/.zshrc @@ -2,6 +2,8 @@ source $HOME/.config/oh-my-zsh/oh-my-zsh.sh source $HOME/.config/zsh/fzf.zsh source $HOME/.config/zsh/kubernetes.zsh source $HOME/.config/zsh/recurly.zsh +source $HOME/.config/zsh/gcloud.zsh +source $HOME/.config/zsh/private.zsh source $HOME/.config/aliases # oh my zsh plugins diff --git a/dots/.config/zsh/gloud.zsh b/dots/.config/zsh/gloud.zsh @@ -0,0 +1,6 @@ +export GCLOUD_SDK="$HOME/prog/google-cloud-sdk" +# The next line updates PATH for the Google Cloud SDK. +if [ -f '/Users/mfeller/prog/google-cloud-sdk/path.zsh.inc' ]; then . '/Users/mfeller/prog/google-cloud-sdk/path.zsh.inc'; fi + +# The next line enables shell command completion for gcloud. +if [ -f '/Users/mfeller/prog/google-cloud-sdk/completion.zsh.inc' ]; then . '/Users/mfeller/prog/google-cloud-sdk/completion.zsh.inc'; fi diff --git a/dots/.profile b/dots/.profile @@ -3,6 +3,7 @@ export XDG_DATA_HOME=$HOME/.local/share export XDG_CACHE_HOME=$HOME/.cache export PATH=$PATH:$HOME/.local/bin +export PATH=/usr/local/bin:$PATH # User configuration export TERMINAL=alacritty @@ -28,5 +29,3 @@ export PATH=$PATH:$GOPATH/bin export PATH=$PATH:$HOME/.cargo/bin export LC_COLLATE="C" - -export GNUPGHOME=$XDG_CONFIG_HOME/gnupg