Skip to content

Instantly share code, notes, and snippets.

@devlights
Created November 16, 2023 05:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devlights/771fc2d79354bda90a1c5aa0ceede53f to your computer and use it in GitHub Desktop.
Save devlights/771fc2d79354bda90a1c5aa0ceede53f to your computer and use it in GitHub Desktop.
VSCodeのターミナルのデフォルトを pwsh にする (Windows)

設定

以下の設定を入れる。

    "terminal.integrated.defaultProfile.windows": "pwsh",
    "terminal.integrated.profiles.windows": {
        "pwsh": {
            "path": ["${env:USERPROFILE}\\scoop\\apps\\pwsh\\current\\pwsh.exe"],
            "icon": "terminal-powershell"
        },
        
        
    },

参考情報

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment