0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

iterm2をいい感じにしたい。

Last updated at Posted at 2020-04-05

ガイダンス

この記事は筆者がiterm2を弄ってそれっぽくなったので忘備録として手順を記述していきます。

環境:zsh,iterm2

やること

  • starshipのインストール
  • iterm2の配色設定
  • サジェスト機能の追加

先にお披露目

こんな感じになりました ・。・
ezgif-2-19eda1f191b2.gif

サジェスト機能はエモいですね!

starshipのインストール手順

starship公式にアクセスして手順を見ながら頑張る。

フォントはFiraCodeでTTFをダウンロードしてきてインストールします。
スクリーンショット 2020-04-05 16.41.49.png

brew install starshipが一番手っ取り早いと思います。

vimで~/.zshrcに下記のコードを記述します。

~/.zshrc
 eval "$(starship init zsh)"

これでstarshipは使えるようになったはずです。

iterm2の配色設定

iterm2を開いて ⌘ + ,キーで設定を開きます。
スクリーンショット 2020-04-05 16.59.36.png

ここで色々弄れます。(画像参照)
てらの設定ファイル

サジェスト機能の追加

下記のコマンドを実行(インストール)

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

iterm2で下記のコマンドを実行し設定を開く

vi ~/.zshrc

開いたら下記のコードを追記(インストールした奴を使用するよと言う設定)

~/.zshrc
source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh

iterm2で下記のコマンドを実行(設定を読み込み直す)or再起動でも可。

source ~/.zshrc
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?