Created
January 13, 2024 12:15
-
-
Save fernandosoares/784e9129b20093e56e50ac0caa25ce59 to your computer and use it in GitHub Desktop.
WSL 2 DevEnv React/Next/Angular/Nest/Node
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt update && sudo apt upgrade -y | |
sudo apt install zsh -y | |
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
bash -c "$(curl --fail --show-error --silent --location https://raw.githubusercontent.com/zdharma-continuum/zinit/HEAD/scripts/install.sh)" | |
nano .zshrc -> | |
zinit light zdharma/fast-syntax-highlighting | |
zinit light zsh-users/zsh-autosuggestions | |
zinit light zsh-users/zsh-completions | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash | |
nvm install --lts | |
npm i -g npm@latest pnpm | |
curl -fsSL https://get.docker.com -o get-docker.sh | |
sudo sh get-docker.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment