dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 4a6cbab513da93e3f4d1311fe59bf01067ffa8da
parent 1d3a11fb11651eb73c3386d13f3d8457a7a41d97
Author: Chris Bracken <chris@bracken.jp>
Date:   Tue, 14 Apr 2026 11:42:22 +0900

zsh: add nvm to path (and bow head in shame)

For a work dependency that I'd really prefer not to install.

Diffstat:
M.config/zsh/paths | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/.config/zsh/paths b/.config/zsh/paths @@ -58,6 +58,10 @@ fi # Rust packages path_prepend "$HOME/.cargo/bin" +# Work: Node.js (why... just why...) +[ -s "$HOME/.homebrew/opt/nvm/nvm.sh" ] && \. "$HOME/.homebrew/opt/nvm/nvm.sh" +[ -s "$HOME/.homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && \. "$HOME/.homebrew/opt/nvm/etc/bash_completion.d/nvm" + # Personal bin directory path_prepend "$HOME/.local/bin" path_prepend "$HOME/bin"