Add Composer binaries to PATH
This commit is contained in:
parent
17a46ab5d0
commit
b96e761e95
1 changed files with 9 additions and 6 deletions
15
zsh/.profile
15
zsh/.profile
|
@ -1,9 +1,3 @@
|
|||
## 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
|
||||
|
||||
## XDG:
|
||||
|
||||
# I keep my XDG files in the normal place, but specifying them in an
|
||||
|
@ -11,6 +5,15 @@ export PATH
|
|||
export XDG_CONFIG_HOME="${HOME}/.config"
|
||||
export XDG_DATA_HOME="${HOME}/.local/share"
|
||||
|
||||
## PATH:
|
||||
|
||||
# Add composer bin to PATH
|
||||
PATH="${XDG_CONFIG_HOME}/composer/vendor/bin:${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
|
||||
|
||||
## Dbus
|
||||
|
||||
# Make the session bus address fixed so other processes can know where
|
||||
|
|
Loading…
Reference in a new issue