summaryrefslogtreecommitdiff
path: root/dotfiles-darwin/zsh/profile
blob: 30a5ef062109e90687ef8fa3da63ae08a16964a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
# -*- mode: shell-script -*-

() {
  local dir
  for dir (
      /usr/local/opt/{gnu-tar,grep}/libexec/gnubin
      ~/Applications/Emacs.app/Contents/MacOS/bin
  ); do
    [[ -d ${dir} ]] && path=(${dir} ${path})
  done
}