내 VS 코드 설정

최근에 새 업무용 랩톱을 얻었고 설정 프로세스의 일부는 내 기본 설정에 맞게 VS Code를 설치하고 구성하는 것이었습니다. 조정하거나 설치하는 모든 설정과 확장을 항상 기억할 수는 없기 때문에 일반적으로 약간의 시간이 걸립니다. VS Code는 여러 장치에서 설정, 확장 등의 동기화를 지원하지만 내 GitHub/Microsoft 계정으로 로그인하는 것이 항상 가능한 것은 아닙니다. 다음은 일반적으로 새로운 VS Code 설치에 변경/추가하는 설정 및 확장입니다.

설정




{
  "editor.fontLigatures": true,
  "extensions.autoUpdate": false,
  "git.autofetch": true,
  "git.confirmSync": false,
  "editor.fontFamily": "'JetBrains Mono'",
  "webhint.enableTelemetry": "disabled",
  "editor.wordWrap": "wordWrapColumn",
  "workbench.editor.untitled.labelFormat": "name",
  "diffEditor.ignoreTrimWhitespace": false,
  "githubIssues.queries": [
    {
      "label": "My Issues",
      "query": "default"
    },
    {
      "label": "All Issues",
      "query": "state:open repo:${owner}/${repository} sort:created-desc"
    }
  ],
  "editor.rulers": [120],
  "editor.wordWrapColumn": 120,
  "screencastMode.onlyKeyboardShortcuts": true,
  "gitlens.hovers.currentLine.over": "line",
  "editor.fontSize": 14,
  "editor.lineHeight": 21,
  "terminal.integrated.fontFamily": "monospace",
  "editor.tabSize": 2,
  "workbench.colorTheme": "Dracula",
  "workbench.startupEditor": "none",
  "typescript.updateImportsOnFileMove.enabled": "always",
  "editor.bracketPairColorization.enabled": true,
  "typescript.inlayHints.parameterNames.enabled": "all",
  "javascript.inlayHints.parameterNames.enabled": "all",
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "editor.formatOnSave": true
}


확장


  • Angular Language Service
  • CSS Flexbox Cheatsheet
  • CSS Initial Value
  • CSS Stacking Contexts
  • Dracula Official
  • es6-string-html
  • ESLint
  • File Utils
  • Git Cheatsheet
  • GitHub Pull Requests and Issues
  • GitLens — Git supercharged
  • Image preview
  • Nx Console
  • Prettier - Code formatter
  • Project Manager
  • RxJS Cheatsheet
  • RxJS Debugging for Visual Studio Code
  • Shades of Purple
  • Test Focus Highlighter
  • TSLint
  • webhint

  • 힘내




    git config --global user.name "My Name"
    git config --global user.email "[email protected]"
    


    글꼴


  • JetBrains Mono

  • Fira Code (대체)



  • 표지 사진 by Mohammad Rahmani on Unsplash

    좋은 웹페이지 즐겨찾기