# wsl2
sudo apt update
sudo apt upgrade
sudo apt install zsh
chsh -s $(which zsh)
ssh-keygen -t rsa
cat id_rsa.pub | clip.exe
git config --global -l
# Mac不要
git config --global core.autocrlf false
curl https://raw.githubusercontent.com/Shougo/neobundle.vim/master/bin/install.sh > install.sh
sh ./install.sh
# Mac は brewで install
brew install nodenv
curl -fsSL https://raw.githubusercontent.com/nodenv/nodenv-installer/master/bin/nodenv-installer | bash
sudo apt-get install language-pack-ja
echo 'export PATH="$HOME/.nodenv/bin:$PATH"' >> ~/.zshrc
echo 'eval "$(nodenv init -)"' >> ~/.zshrc
https://nodejs.org/ja/
curl -fsSL https://github.com/nodenv/nodenv-installer/raw/master/bin/nodenv-doctor | bash