Skip to content

Instantly share code, notes, and snippets.

@vicainelli
Last active January 30, 2020 20:25
Show Gist options
  • Save vicainelli/2b4fd190f37c901c6ce6aec02dd7ae0d to your computer and use it in GitHub Desktop.
Save vicainelli/2b4fd190f37c901c6ce6aec02dd7ae0d to your computer and use it in GitHub Desktop.
VSCode

VSCode

Extensions

⚠️ Highly recommended

Performance

Git / Code Versionign

Lint / Pretty code

Utils

👍 Recommended

Settings

This is a couple of VSCode settings I use and recommend.

Auto Save

{
  "files.autoSave": "afterDelay",
  "files.autoSaveDelay": 500
}

Rulers

{
  "editor.rulers": [
    80,
    100,
    120
  ]
}

Excluding files

{
  "files.exclude": {
    "**/.git": true,
    "**/.svn": true,
    "**/.hg": true,
    "**/CVS": true,
    "**/node_modules": true,
    "**/.DS_Store": true,
    "**/.next": true,
    "**/.cache": true
  }
}

Prettier

{
  "prettier.singleQuote": true
}

Typography

I use Victor Mono

{
  "editor.fontFamily": "Victor Mono",
  "editor.fontSize": 11.5,
  "editor.lineHeight": 28,
  "editor.letterSpacing": 0.5
  "files.autoSave": "onFocusChange",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment