mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
Load a script setting the $PATH variable
The file 'custom/path/path.zsh' can be created to automatically set the $PATH variable. This script is executed before everything else. This way, every executable will point to the correct one.
This commit is contained in:
parent
ed990f61ff
commit
475751e6d0
1 changed files with 4 additions and 0 deletions
|
|
@ -1,3 +1,7 @@
|
|||
if [ -f $ZSH/custom/path/path.zsh ]; then
|
||||
source $ZSH/custom/path/path.zsh
|
||||
fi
|
||||
|
||||
# Check for updates on initial load...
|
||||
if [ "$DISABLE_AUTO_UPDATE" != "true" ]
|
||||
then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue