2022 Windows開発環境設定

2022/12/15

Windows ターミナルのインストール

設定

  • 管理者

  • Ubuntu 20.04.5 インストール

$ wsl --set-default-version 2

Docker を WSL 2 上で動作させる

"Use the WSL 2 based engine" にチェックを入れ、 [Apply & Restart] します。

$ sudo apt install curl wget git

$ sudo apt-get install zsh

$ sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

  git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/powerlevel10k
  echo 'source ~/powerlevel10k/powerlevel10k.zsh-theme' >>~/.zshrc

Terminalを再起動して、powerlevel10kを設定

Post Directory