VS Code 기본 터미널 변경하기
VS Code 업데이트로 "terminal.integrated.shell.windows"
기능이 폐지되었다. 복수의 터미널을 사용할 수 있도록 프로필을 관리하는 형태로 업데이트되었다. VS Code 기본 터미널을 Git Bash
로 바꾸기 위해 아래와 같은 동작을 수행하면 된다.
setting.json
에 아래 항목 추가
"terminal.integrated.profiles.windows": { "GitBash": { "path":["D:\\Git\\bin\\bash.exe"], "icon":"terminal-bash" }, "PowerShell": { "source": "PowerShell", "icon": "terminal-powershell" }, "Command Prompt": { "path": [ "${env:windir}\\Sysnative\\cmd.exe", "${env:windir}\\System32\\cmd.exe" ], "args": [], "icon": "terminal-cmd" }, }, "terminal.integrated.defaultProfile.windows": "GitBash",
Git Bash의 경로는 알아서 수정하면 된다. 주의할 점은 "Git Bash"처럼 공백을 두면 안된다.
설정(Ctrl+,)
창에서termianl
검색,Terminal:Explorer Kind
를external
로 변경.(Integrated 대신)- VS Code 재부팅
결과화면

댓글을 사용할 수 없습니다.