Visual Studio Code 다운로드

Visual Studio Code

Extension 설치

  1. Ctrl+Shift+x
  2. C#, Git History, Prettier - Code Formatter
  3. File -> Preference -> Settings
  4. 오른쪽 위 아이콘을 눌러 .json 형식으로 변환
  5. 다음 행 추가
    "editor.defaultFormatter": "esbenp.prettier-vscode"

git 설치

git

VSCode 에 Git Bash 연결

  1. File -> Preference -> Settings

  2. 오른쪽 위 아이콘을 눌러 .json 형식으로 변환

  3. 다음 행 추가

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

  4. Ctrl + ` 로 터미널을 닫았다가 열기

  5. 드랍다운 메뉴를 통해 터미널을 bash로 교체

git 커밋 텍스트 에디터를 VSCode 로 교체

  1. git bash 실행
  2. git config --global core.editor "code --wait"
  3. 만약 위 명령어가 먹히지 않으면 vscode 에서 command palette (Cmd + Shift + P)를 열어 Shell Command: Install 'Code' Command In PATH 실행

Font 교체

Ununtu Mono, Monaco, D2Coding(한글용)

Ubuntu Mono derivative Powerline.ttf
0.19MB
Ubuntu_Mono.zip
0.42MB

VSCode 에서 ignore할 폴더 및 확장자 설정

  1. File -> Preference -> Settings

  2. 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

+ Recent posts