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
brewで開発ツールをインストール
code:sh
brew install git vim neovim
rustupでrustをインストール
code:sh
.zshenvにpathを追記
code:zsh
path=(
$HOME/.cargo/bin(N-/)
)
binstallをインストール
code:sh
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)"