Skip to content

Instantly share code, notes, and snippets.

@antonlvovych
Last active October 13, 2025 19:03
Show Gist options
  • Save antonlvovych/a222cc92312e9addbe844f19f6416942 to your computer and use it in GitHub Desktop.
Save antonlvovych/a222cc92312e9addbe844f19f6416942 to your computer and use it in GitHub Desktop.
NVM on fish shell using bass
# Install NVM manually (https://github.com/creationix/nvm)
# Install bass (https://github.com/edc/bass)
# Add code below to your config.fish
function nvm
bass source ~/.nvm/nvm.sh --no-use ';' nvm $argv
end
nvm use default --silent
# Install last stable node.js
# ⋊> ~ nvm install stable
# Set stable version to default
# ⋊> ~ nvm alias default stable
@phukon
Copy link

phukon commented Oct 13, 2025

thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment