블로그 언저리인 무언가
컴퓨터 바꾼김에 쓰는 VScode 세팅법 본문
1. VSCode 다운로드하기
2. 자신의 세팅 불러오기
3. C++ 환경 구축하기
3-1. MingW 다운로드하기
3-2. MingW 환경변수 설정하기
3-3. Git 다운로드하기
(생략 가능, 차후에 Git Bash 대신 Command Prompt 사용하면 됨)
3-4. Code Runner 확장 설치 및 JSON세팅
{
"terminal.integrated.defaultProfile.windows": "Git Bash", // 기본 터미널 종류 지정, Git Bash가 없다면 Command Prompt
"code-runner.runInTerminal": true, // coderunner 터미널에서 강제실행
"code-runner.saveAllFilesBeforeRun": true, // 실행 전 자동 저장
"code-runner.executorMap": {
"javascript": "node",
"java": "cd $dirWithoutTrailingSlash && javac $fileName && java $fileNameWithoutExt",
"c": "cd $dirWithoutTrailingSlash && gcc $fileName -g -o $fileNameWithoutExt && ./$fileNameWithoutExt.exe",
// input.txt로 입력 output.txt.로 출력.
//"cpp": "cd $dirWithoutTrailingSlash && g++ $fileName -g -o $fileNameWithoutExt && ./$fileNameWithoutExt.exe < input.txt > output.txt",
// input.txt로 입력후 터미널 출력.
"cpp": "cd $dirWithoutTrailingSlash && g++ $fileName -g -o $fileNameWithoutExt && ./$fileNameWithoutExt.exe < input.txt",
// 직접 실행후 입력할때.
//"cpp": "cd $dirWithoutTrailingSlash && g++ $fileName -g -o $fileNameWithoutExt && ./$fileNameWithoutExt.exe",
// Command Prompt에서 쓸때 (./제거)
//"cpp": "cd $dirWithoutTrailingSlash && g++ $fileName -g -o $fileNameWithoutExt && $fileNameWithoutExt.exe < input.txt",
"python": "cd $dirWithoutTrailingSlash && python -u $fileName"
},
[
{
"key": "ctrl+enter", // 실행 단축키 지정
"command": "code-runner.run"
}
]
4. python 환경 구축하기
3-1. Python 다운로드하기
현재 내가 쓰고 있는 확장 프로그램 모음
Korean Language Pack for Visual Studio Code - VSCode를 한국어로 사용 가능
Auto-Open Markdown Preview - 마크다운 문법 파일에서 미리 보기 기능 사용하게 해 줌
vscode-pdf - VSCode에서 pdf 파일들을 열수 있게 해 줌
One Dark Pro - 내가 지금 쓰고 있는 VSCode 테마, 색깔이 예쁘다 ㅎ
Syntax Highlighter - 코드 색깔을 좀 더 예쁘게 하이라이팅 해줌
vscode-icons - VSCode에서 파일 옆에 종류에 따라 아이콘을 띄워줌
Rainbow Brackets - 괄호끼리 묶어서 하이라이팅 해줌, 최신판 VSCode에는 내장되게 바뀌었다고 들었음
C/C++ - C/C++ 컴파일용 확장 1
Code Runner - C/C++ 컴파일용 확장 2
Auto-Open Markdown Preview - 마크다운 문서를 프리뷰로 옆에 보여줌
Jupyter- Jupyter 노트북 사용 가능
참조 글
[VScode] CodeRunner와 MinGW를 이용한 C, C++ 컴파일 및 디버깅 on Windows
Git, Git Bash 쉬운 설치/ Git Bash 설치 쉽고 자세한 설명/ 윈도우 OS에서 리눅스 환경 구축하기/ Git Bash란 무엇인가
'Programming > Etc' 카테고리의 다른 글
2024 SCON 후기 (0) | 2024.05.27 |
---|---|
2023 SCON 후기 (0) | 2023.05.24 |
2020 ICPC Seoul Regional 예선 후기 (0) | 2020.10.11 |
자주 쓰지만 까먹는 문법 모음 (0) | 2020.09.26 |