From c78d8f892fa209c7961ce9d08e454138a5e0819b Mon Sep 17 00:00:00 2001 From: Jer Noble Date: Fri, 9 Sep 2016 10:26:56 -0700 Subject: [PATCH] Add homebrew path to zsh_login --- zsh_login | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/zsh_login b/zsh_login index 459dfc8..8f4f2fb 100644 --- a/zsh_login +++ b/zsh_login @@ -36,12 +36,21 @@ setopt extended_glob PS1=$'%(?.😊.😡) %(1v.%1v .)%n@%m:%(3~,.../,)%2~> ' PATH=~/bin:$PATH +if [[ -d ~/homebrew/bin ]]; then + PATH=$PATH:~/homebrew/bin +fi + HISTFILE=~/.zsh_history HISTSIZE=5000 SAVEHIST=1000 WORDCHARS='*?_-.[]~&;!#$%^(){}<>' export MANPATH=~/man:$MANPATH + +if [[ -d ~/homebrew/share/man ]]; then + MANPATH=$MANPATH:~/homebrew/share/man +fi + export EDITOR=/usr/bin/vim export LSCOLORS=gxfxcxdxbxegedabagacad -- 2.40.1