DEV Community

Discussion on: Show off your VSCode Setup 👩🏻‍💻💯

Collapse
 
patarapolw profile image
Pacharapol Withayasakpunt • Edited

Screenshot

Theme: Solarized Dark
Icon theme: Material Icon Theme

Recommended Plugins:

  • Non-language specific:
    • Bracket Pair Colorizer 2
    • DotENV
    • Ignore files
    • Remote - SSH
    • Better TOML
    • Indent 4-to-2
    • Markdown Preview Enhanced
    • SQLite
  • TypeScript is the richest programming language
    • Comment tagged templates
    • EJS language support
    • Prettier - Code formatter AND Prettier ESLint
    • sort-imports
  • Others
    • Python Docstring Generator

Relevant settings.json

{
  "workbench.colorCustomizations": {
    "terminal.background": "#102130"
  },
  "editor.tabSize": 2,
  "files.eol": "\n",
  "editor.renderWhitespace": "trailing",
  "explorer.autoReveal": false,
  "files.associations": {
    ".*ignore": "ignore",
    "Dockerfile.*": "dockerfile"
  },
  "[json]": {
    "editor.defaultFormatter": "vscode.json-language-features"
  },
  "editor.wordWrap": "on",
  "material-icon-theme.files.associations": {
    "*.db": "database"
  }
}
Enter fullscreen mode Exit fullscreen mode