VSCode 터미널 시작 안내 문구 끄기

sookyeong·2022년 3월 30일
0

VSCode 터미널 시작 안내 문구 끄기

1. Ctrl+,을 눌러 설정으로 들어간 후 우측 상단의 버튼을 누르면 settings.json이 열린다.

2. settings.json에 다음 내용을 추가해준다.

"terminal.integrated.profiles.windows": {
        "PowerShell": {
            "source": "PowerShell",
            "icon": "terminal-powershell",
            "args": [
                "-NoLogo"
            ]
        }
    }


결과

profile
actions speak louder than words

0개의 댓글