feat(zsh): add NVM configuration and tmuxinator aliases

This commit is contained in:
2025-06-16 13:04:11 +02:00
parent 698af399dc
commit 3c09c4b6c5
2 changed files with 7 additions and 0 deletions

4
.zshrc
View File

@ -141,3 +141,7 @@ fi
export BUN_INSTALL="$HOME/.bun"
export PATH="$BUN_INSTALL/bin:$PATH"
export PATH=".:$PATH"
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion

3
alias.d/tmuxinator.sh Normal file
View File

@ -0,0 +1,3 @@
alias t='tmuxinator'
alias ts='tmuxinator start'
alias tl='tmuxinator list'