Memo

[VSCODE] Code Style

★개발일기★ 2024. 12. 19. 18:56
반응형
{
  "explorer.confirmDelete": false,
  "editor.defaultFormatter": "esbenp.prettier-vscode",
  "editor.formatOnSave": true,
  "typescript.updateImportsOnFileMove.enabled": "always",
  "editor.wordWrap": "on",
  "workbench.colorTheme": "Material Theme Darker",
  "editor.tabSize": 3,
  "editor.semanticTokenColorCustomizations": {},
  "workbench.colorCustomizations": {
    "editor.lineHighlightBackground": "#70484841",
    "editorLineNumber.foreground": "#ffffff",
    "editorLineNumber.activeForeground": "#e63a3a",
    "tree.indentGuidesStroke": "#ffffff",
    "editorError.foreground": "#FF0000",
    "editor.findMatchForeground": "#FF0000",
    "sideBar.foreground": "#ffffffc7"
  },
  "editor.tokenColorCustomizations": {
    "[Material Theme Darker]": {
      "comments": "#26e46f"
    }
  },
  "workbench.settings.applyToAllProfiles": []
}
반응형