[zsh] Added .zprofile for early path addition

This commit is contained in:
Marcel Kapfer 2021-06-05 16:56:17 +02:00
parent 0ef70eff2e
commit 186fe3618a
Signed by: mmk2410
GPG Key ID: CADE6F0C09F21B09
1 changed files with 10 additions and 0 deletions

10
shells/zprofile Normal file
View File

@ -0,0 +1,10 @@
#
# /etc/zprofile and ~/.zprofile are run for login shells
#
# Add ~/.local/bin to path
PATH="$PATH:$HOME/.local/bin"
# Add ~/.npm-global/bin/ to path
PATH="$PATH:$HOME/.npm-global/bin"
export PATH