From 3c09c4b6c5a1de3b141ff8fa00c3a94ce3f1d01a Mon Sep 17 00:00:00 2001 From: Constantin Simonis Date: Mon, 16 Jun 2025 13:04:11 +0200 Subject: [PATCH] feat(zsh): add NVM configuration and tmuxinator aliases --- .zshrc | 4 ++++ alias.d/tmuxinator.sh | 3 +++ 2 files changed, 7 insertions(+) create mode 100644 alias.d/tmuxinator.sh diff --git a/.zshrc b/.zshrc index db55c0d..3cbd8b2 100644 --- a/.zshrc +++ b/.zshrc @@ -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 diff --git a/alias.d/tmuxinator.sh b/alias.d/tmuxinator.sh new file mode 100644 index 0000000..242aeb2 --- /dev/null +++ b/alias.d/tmuxinator.sh @@ -0,0 +1,3 @@ +alias t='tmuxinator' +alias ts='tmuxinator start' +alias tl='tmuxinator list' \ No newline at end of file