Skip to content

Instantly share code, notes, and snippets.

@antonlvovych
Last active February 28, 2024 02:21
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment