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

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