mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
6 lines
144 B
Bash
6 lines
144 B
Bash
if [ -f `brew --prefix`/etc/profile.d/z.sh ]; then
|
|
. `brew --prefix`/etc/profile.d/z.sh
|
|
function precmd () {
|
|
z --add "$(pwd -P)"
|
|
}
|
|
fi
|