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

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