Macのターミナル環境をAlacritty + tmux + Starshipでイケイケにする

Tips, Mac, Rust05 December 2020

Alacritty


$ brew install --cask alacritty
  • 設定ファイルの作成
$ touch ~/.alacritty.yml

カラースキーム変更

Tmux


$ brew install tmux
$ brew install reattach-to-user-namespace // ついでに
$ touch ~/.tmux.conf

参考Qiita

zsh Auto Suggest


$ git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions

以下をshellの.zshrcに追記し再起動

$ source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh

参考Qiita

Starship


$ brew install starship

以下をshellの.zshrcに追記し再起動

$ eval "$(starship init zsh)"

参考ドキュメント

  • 設定ファイルの作成
$ mkdir -p ~/.config && touch ~/.config/starship.toml

starship.tomlに各設定を書くことでプロンプトの変更などが可能になる 参考ドキュメント

参考ブログ

おまけ

$ brew install exa bat lazydocker

exa

lsの強化コマンド

bat

catの強化コマンド

lazydocker

dockerをターミナル操作するやつ

z

ディレクトリ移動が神になるやつ

参考Qiita

tags: Tips, Mac, Rust