feat: remove NodeJS aliases and add pnpm to PATH if available
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 14s
Nix Format Check / check-format (push) Successful in 47s
Python Lint Check / check-python (push) Failing after 10s

This commit is contained in:
2025-04-02 14:16:51 +02:00
parent ad271fe57b
commit ac4d0622da

View File

@ -51,10 +51,6 @@ alias gcm='git commit -m'
alias gco='git checkout'
alias gcb='git checkout -b'
# NodeJS aliases
alias node='node-20'
alias npm='npm-20'
# Kubernetes aliases (Minikube)
alias kubectl="minikube kubectl --"
@ -75,6 +71,11 @@ export PATH=$PATH:$HOME/.local/bin
export PATH=$PATH:$HOME/.cargo/bin
export PATH=$PATH:$DOTFILES_PATH/bin
# Include pnpm if it exists
if [ -d "$HOME/.local/share/pnpm" ]; then
export PATH=$PATH:$HOME/.local/share/pnpm
fi
# In case $HOME/.flutter/flutter/bin is found, we can add it to the PATH
if [ -d "$HOME/.flutter/flutter/bin" ]; then
export PATH=$PATH:$HOME/.flutter/flutter/bin