My VSCode setup

| Sep 6, 2021

Font

Extensions

Style/Formatting

Useful/Extra

  • Import Cost
    • Display inline the size of the required/imported package
  • Quokka.js
    • Evaluate code/logs inline and show results in the editor

User settings

{
  "explorer.openEditors.visible": 0,
  //   "workbench.colorTheme": "Monokai Dimmed",
  //   "workbench.colorTheme": "Mayukai Alucard",
  "workbench.colorTheme": "Monokai Pro (Filter Machine)",
  "editor.fontFamily": "'Anonymous Pro', 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
  "editor.fontSize": 15,
  "editor.fontWeight": "bold",
  "editor.wordWrap": "on",
  "workbench.iconTheme": "material-icon-theme",
  "editor.cursorSmoothCaretAnimation": true,
  "editor.cursorBlinking": "phase",
  "editor.formatOnSave": true,
  "[javascript]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode"
  },
  "window.zoomLevel": 1
}