Set environment variables in .profile, not .zshrc
More programs read .profile than .zshrc, so settings set in it are available in more programs.
This commit is contained in:
parent
ff5f8bf69f
commit
e3f1a5feea
2 changed files with 5 additions and 5 deletions
5
zsh/.profile
Normal file
5
zsh/.profile
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
## PATH:
|
||||||
|
# Add "$HOME/usr/bin" to $PATH because that is where I keep all of my
|
||||||
|
# personal utilities and helper commands.
|
||||||
|
PATH="${HOME}/usr/bin:${PATH}"
|
||||||
|
export PATH
|
|
@ -1,5 +0,0 @@
|
||||||
## PATH:
|
|
||||||
# Add "$HOME/usr/bin" to $PATH because that is where I keep all of my
|
|
||||||
# personal utilities and helper commands.
|
|
||||||
PATH="${HOME}/usr/bin:${PATH}"
|
|
||||||
export PATH
|
|
Loading…
Reference in a new issue