diff options
Diffstat (limited to '')
-rw-r--r-- | zsh/.config/zsh/.zshrc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc index 176e331..fbc94cb 100644 --- a/zsh/.config/zsh/.zshrc +++ b/zsh/.config/zsh/.zshrc @@ -77,6 +77,10 @@ case "$ID" in source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.plugin.zsh source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh ;; + gentoo ) + source /usr/share/zsh/site-functions/zsh-syntax-highlighting.zsh + source "$XDG_DATA_HOME"/zsh/zsh-autosuggestions/zsh-autosuggestions.zsh + ;; Darwin ) source /usr/local/share/zsh-autosuggestions/zsh-autosuggestions.zsh source /usr/local/share/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh @@ -85,3 +89,8 @@ case "$ID" in echo "no highlight for you" ;; esac + +# pnpm +export PNPM_HOME="/home/user/.local/share/pnpm" +export PATH="$PNPM_HOME:$PATH" +# pnpm end |