From e53e78d7575e1c7ea6d2e401bc1719a81959327c Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sun, 10 Dec 2017 18:57:28 +0000 Subject: [PATCH] No longer use yarn, add custom psql path to $PATH --- zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zshrc b/zshrc index 9f23563..037cc68 100644 --- a/zshrc +++ b/zshrc @@ -166,15 +166,15 @@ export GPG_TTY test "$platform" = 'linux' && export PATH="$PATH:/home/jonny/.composer/vendor/bin" test "$platform" = 'osx' && export PATH="$PATH:/Users/jonny/.composer/vendor/bin" -# yarn PATH -export PATH="$PATH:$HOME/.yarn/bin" - # rust/cargo bin PATH export PATH="$PATH:$HOME/.cargo/bin" # Ruby PATH export PATH="$PATH:$HOME/.gem/ruby/2.4.0/bin" +# PostgreSQL binaries +test -d /usr/local/pgsql && export PATH="$PATH:/usr/local/pgsql/bin" + # Set the DEFAULT_USER variable to me (jonny) export DEFAULT_USER="jonny"