코드 잡동사니

fish shell 에서 nvm 사용하기 본문

노드js

fish shell 에서 nvm 사용하기

세객 2021. 8. 16. 21:28
  • fish shell 을 사용하는데 nvm 사용하는 방법입니다.

 

# fisher 설치
curl -sL https://git.io/fisher | source && fisher install jorgebucaran/fisher

# edc/bass 설치
fisher install edc/bass

# 함수 추가
vim ~/.config/fish/functions/nvm.fish

function nvm
    bass source ~/.nvm/nvm.sh --no-use ';' nvm $argv
end

# 실행
nvm ls

 

출처 https://eshlox.net/2019/01/27/how-to-use-nvm-with-fish-shell

Comments