카테고리 없음

#Win10 #VisualStudioCode #Settings.Json #터미널 설정

matrim 2020. 4. 30. 10:53
반응형

위치: C:\Users\"{사용자}"\AppData\Roaming\Code\User

파일이름: settings.json

{

  "terminal.integrated.shell.windows""C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"

}

다른 터미널 설정

// Command Prompt

"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe"

// PowerShell

"terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"

// Git Bash

"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe"

// Bash on Ubuntu (on Windows)

"terminal.integrated.shell.windows": "C:\\Windows\\System32\\bash.exe"

반응형