Home vs code 개발환경 세팅
Post
Cancel

vs code 개발환경 세팅

VS Code

Visual Studio Code from command line

  1. Cmd + Shift + P 입력
  2. type “install command”
  3. terminal에서 code [path] 입력하기

Insert New Line at the end of files

code -> Preferences -> search newline -> check insert final New line checkbox

(Optional) Java version Setting

Java Intellisense를 VS code에서 사용하려면 Java11 이상 버전이 필요하다고 한다. 하지만 외부 터미널에서는 계속 Java8을 사용하고 싶다면, 다음과 같이 하면된다.

  1. Preferences -> Settings
  2. 검색창에 Java라고 검색
  3. Java:Home 섹션 밑에 Edit in settings.json 선택
  4. 다음 라인추가
    1
    
     "java.home": "/Library/Java/JavaVirtualMachines/jdk-14.0.2.jdk/Contents/Home"
    
This post is licensed under CC BY 4.0 by the author.

Trending Tags