scoopを使ってwindows terminalをインストールする

Windows Terminal とは

 コマンド プロンプト、PowerShell、WSL などのコマンドライン ツールおよびシェルのユーザーのための、 高速、効率的、強力な、生産性を向上させる最新のターミナル アプリケーションです。 主な機能には、複数のタブ、ウィンドウ、Unicode および UTF-8 文字のサポート、 GPU アクセラレータによるテキスト レンダリング エンジン、カスタマイズできるテーマ、スタイル、構成が含まれます。

scoop のinstall後

Scoopの設定

Gitのインストール (Scoopが内部的に使用) と extrasバケットの追加を行う。

コマンドプロンプトから

scoop install git
scoop bucket add extras

git の初期設定をする

git config --global user.email "email@example.com"
git config --global user.name "username"
git config --global core.quotepath false
git config --global core.autocrlf false
git config --global push.default upstream

Windows Terminalのインストール

scoop install windows-terminal

Windows Terminalの設定

インストールした Windows Terminal を実行し、Ctrl + , で設定が開く
created:

Back to top