MacBook Proセットアップメモ
HomeBrewのインストール
brew経由でデスクトップアプリをインストール
code:Brewfile
cask "1password"
cask "arc"
cask "bettertouchtool"
cask "discord"
cask "iterm2"
cask "karabiner-elements"
App Storeでアプリをインストール
RunCat
Velja
Klack
設定を弄る
トラックパッド
タップでクリックにする
仮想デスクトップの移動を4本指にする
iTerm2の設定
JBMono Fontインストール
code:sh
brew tap homebrew/cask-fonts
brew install homebrew/cask-fonts/font-jetbrains-mono-nerd-font
tokyonight-stormのインストール
code:sh
curl -LO https://raw.githubusercontent.com/mbadolato/iTerm2-Color-Schemes/master/schemes/tokyonight-storm.itermcolors
brewで開発ツールをインストール
code:sh
brew install git vim neovim
rustupでrustをインストール
code:sh
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
.zshenvにpathを追記
code:zsh
path=(
$HOME/.cargo/bin(N-/)
)
binstallをインストール
code:sh
curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
starshipをインストール
code:sh
cargo binstall starship
.zshrcの末尾に追記
code:zsh
eval "$(starship init zsh)"
lsdをインストール
code:sh
cargo binstall lsd
.zshrcに追記
code:zsh
alias ls="lsd"
alias ll="ls -l"
alias la="ls -al"
miseをインストール
code:sh
cargo binstall mise
.zshrcに追記
code:sh
eval "$(~/.local/bin/mise activate zsh)"