0
3

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.

Windows Terminal + Powerline でプロンプトを変えてみる

Posted at

2021-07-18_174541.png

powerline を使用すると、プロンプトをおしゃれに色付けできたり git の状態を表示させたりできます。 powerline の導入は MS の doc に記載がありますのでそちらを参考に。

powerline をインストールしたあとに、プロンプトの表示内容をカスタマイズしたかったので、その方法を紹介します。

powerline でのプロンプトをカスタマイズ

Oh My Posh にカスタマイズの方法がありました。

カスタムの設定ファイルのパスはおそらく指定がないです。どこで作成しても問題ないと思います。適当な場所に設定ファイルを作成し、powershell プロファイルに作成したファイルのパスを指定してあげます。

カスタマイズする内容は、プロンプトにユーザー名とコンピュータ名が表示されていたので、これを表示させないようにします。

~/.mytheme.omp.json
{
  "blocks": [
    {
      "type": "prompt",
      "alignment": "left",
      "segments": [
        {
          "type": "path",
          "style": "powerline",
          "powerline_symbol": "\uE0B0",
          "foreground": "#100e23",
          "background": "#91ddff",
          "properties": {
            "folder_icon": "\uF115",
            "folder_separator_icon": " \uE0B1 ",
            "style": "full"
          }
        },
        {
          "type": "git",
          "style": "powerline",
          "powerline_symbol": "\uE0B0",
          "foreground": "#193549",
          "background": "#95ffa4"
        },
        {
          "type": "python",
          "style": "powerline",
          "powerline_symbol": "\uE0B0",
          "foreground": "#100e23",
          "background": "#906cff",
          "properties": {
            "prefix": " \uE235 "
          }
        },
        {
          "type": "exit",
          "style": "powerline",
          "powerline_symbol": "\uE0B0",
          "foreground": "#ffffff",
          "background": "#ff8080",
          "properties": {
            "prefix": " \uE20F"
          }
        }
      ]
    },
    {
      "type": "prompt",
      "alignment": "left",
      "newline": true,
      "segments": [
        {
          "type": "text",
          "style": "plain",
          "foreground": "#007ACC",
          "properties": {
            "prefix": "",
            "text": "\u276F"
          }
        }
      ]
    }
  ],
  "final_space": false
}

設定ファイルを作成したら、powershell プロファイルに作成したファイルのパスを指定します。

Import-Module posh-git
Import-Module oh-my-posh

Set-PoshPrompt -Theme ~/.mytheme.omp.json

設定を編集したら. $PROFILEでプロファイルを読み込み直すと設定が反映されます。

powerline で使用できる記号

ここらへんにコードと共にかいてあります。

0
3
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
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?