Visual Studio Code 다운로드
Extension 설치
- Ctrl+Shift+x
- C#, Git History, Prettier - Code Formatter
- File -> Preference -> Settings
- 오른쪽 위 아이콘을 눌러 .json 형식으로 변환
- 다음 행 추가
"editor.defaultFormatter": "esbenp.prettier-vscode"
git 설치
VSCode 에 Git Bash 연결
File -> Preference -> Settings
오른쪽 위 아이콘을 눌러 .json 형식으로 변환
다음 행 추가
"terminal.integrated.shell.windows": "C:\Program Files\Git\bin\bash.exe"
Ctrl + ` 로 터미널을 닫았다가 열기
드랍다운 메뉴를 통해 터미널을 bash로 교체
git 커밋 텍스트 에디터를 VSCode 로 교체
- git bash 실행
- git config --global core.editor "code --wait"
- 만약 위 명령어가 먹히지 않으면 vscode 에서 command palette (Cmd + Shift + P)를 열어 Shell Command: Install 'Code' Command In PATH 실행
Font 교체
Ununtu Mono, Monaco, D2Coding(한글용)
VSCode 에서 ignore할 폴더 및 확장자 설정
File -> Preference -> Settings
files.exclude
*/.csproj
*/.meta
*/.sln
*/.vs
*/.vscode
*/[Ll]ibrary
*/[Oo]bj
*/[Tt]emp
'IDE > Visual Studio Code' 카테고리의 다른 글
vscode로 unity project 로드시 에러 (1) | 2020.10.07 |
---|---|
단축키 (0) | 2020.06.01 |