LoginSignup
1
1

More than 1 year has passed since last update.

VS Code のターミナルに nyagos を追加

Posted at

最近の VS Code は設定とか GUI っぽくなっててちょいつまづく。

Ctrl + , で設定を開いて... から settings.json を直接編集するまでに、結局ラベルの文字列を打ち込まないとけいないので、いっそ settings.json を直接開く

ファイル > 開く で、%APPDATA%\Code\User\settings.json を開く。
なければ、新規作成 で保存先を %APPDATA%\Code\User\settings.json にして保存する。

nyagos.exe をフルパスで指定。

settings.json
{
    "terminal.integrated.defaultProfile.windows": "nyagos",
    "terminal.integrated.profiles.windows": {
        "nyagos": {
            "path": "C:\\usr\\nyagos-4.4.11_0-windows-amd64\\nyagos.exe",
        },
    },
}

デフォルトを nyagos にするかはお好みで。

1
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
1
1