tags:

views:

53

answers:

1

I run unsuccessfully the following code at /usr/local/bin

LBIN=/usr/local/bin

How can you change specific prompt's PATHs in Zsh?

+1  A: 

After setting

LBIN=/usr/local/bin

Try cd-ing to it:

$> cd ~LBIN

And see what the prompt shows you.

If you want this behavior by default, set LBIN in your zshrc.

sykora
Thank you for you answer! I did not know that you need the tilde.
Masi