# Scoopインストール
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Invoke-RestMethod -Uri https://get.scoop.sh | Invoke-Expression
# aria2のワーニングを表示させない
scoop config aria2-warning-enabled false
# 最低限必要なソフトウェアのインストール
scoop install aria2 git task
git clone https://github.com/npakk/dotfiles_for_desktop.git
cd dotfiles_for_desktop
task
# Homebrewインストール
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
echo >> /Users/`whoami`/.zprofile
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/`whoami`/.zprofile
eval "$(/opt/homebrew/bin/brew shellenv)"
git clone https://github.com/npakk/dotfiles_for_desktop.git
cd dotfiles_for_desktop
make
以下のソフトウェアは手動でインストール
- 1Password
- ATOK
- Docker
Dockerのデタッチキーと衝突して Ctrl+p の入力が吸われるときは、~/.docker/config.json
を以下のように修正
Winの場合、cmdやpwshを使っているなら
%USERPROFILE%\.docker\config.json
、wslなら~/.docker/config.json
{
"detachKeys": "ctrl-_"
}