mirror of
https://github.com/zdharma-continuum/zinit-configs.git
synced 2025-01-31 04:08:16 +01:00
6 lines
144 B
Bash
6 lines
144 B
Bash
# DESC: Removes /usr/local/{bin,sbin} from $PATH
|
|
|
|
path=( "${path[@]:#/usr/local/bin}" )
|
|
path=( "${path[@]:#/usr/local/sbin}" )
|
|
|
|
# vim:ft=zsh:et
|