~willdurand/public-inbox

dotfiles: zsh: make sure we set PATH and then override v1 APPLIED

William Durand: 1
 zsh: make sure we set PATH and then override

 1 files changed, 6 insertions(+), 6 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~willdurand/public-inbox/patches/20256/mbox | git am -3
Learn more about email & git

[PATCH dotfiles] zsh: make sure we set PATH and then override Export this patch

I shouldn't have changed that config late at night...

Signed-off-by: William Durand <will+git@drnd.me>
---
 zsh/zshrc | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/zsh/zshrc b/zsh/zshrc
index 07c2408..1a1f77d 100644
--- a/zsh/zshrc
+++ b/zsh/zshrc
@@ -122,10 +122,6 @@ if [[ -x "$HUB" ]]; then
  eval "$($HUB alias -s)"
fi

if [ -d '/usr/share/doc/git/contrib/diff-highlight' ]; then
  export PATH="$PATH:/usr/share/doc/git/contrib/diff-highlight"
fi

# vi -> vim
alias vi='vim'

@@ -144,13 +140,17 @@ bindkey '^X^E' edit-command-line
# fzf
export FZF_DEFAULT_COMMAND='rg --files --hidden'

# Homebrew
export HOMEBREW_NO_ANALYTICS=1

# Common PATH
export PATH="/usr/local/bin:/usr/sbin:/sbin:/usr/bin:/bin:/usr/X11/bin:/Developer/usr/bin"
export PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH"
export PATH="/usr/local/sbin:$PATH"

# Homebrew
export HOMEBREW_NO_ANALYTICS=1
if [ -d '/usr/share/doc/git/contrib/diff-highlight' ]; then
  export PATH="$PATH:/usr/share/doc/git/contrib/diff-highlight"
fi

# Node
if [[ -x $(which yarn) ]] ; then
--
2.17.1
Thanks!