Skip to content

Instantly share code, notes, and snippets.

@tilomitra
Last active May 2, 2019 20:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tilomitra/e1bb62d389b3798d8d381db7ac929570 to your computer and use it in GitHub Desktop.
Save tilomitra/e1bb62d389b3798d8d381db7ac929570 to your computer and use it in GitHub Desktop.
VS Code User Settings
{
"editor.formatOnSave": true,
// Enable per-language
"[javascript]": {
"editor.formatOnSave": true
},
"[json]": {
"editor.formatOnSave": true
},
"emmet.syntaxProfiles": {
"javascript": "jsx",
"xml": {
"attr_quotes": "single"
}
},
"editor.lineHeight": 22,
"javascript.validate.enable": false,
"workbench.editor.enablePreview": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"prettier.trailingComma": "all",
"bracketPairColorizer.forceIterationColorCycle": true,
"editor.fontWeight": "500",
"editor.fontLigatures": true,
"editor.letterSpacing": 0.5,
"editor.cursorWidth": 5,
"editor.renderWhitespace": "all",
"editor.snippetSuggestions": "top",
"editor.glyphMargin": true,
"editor.minimap.enabled": false,
"terminal.integrated.fontWeight": "400",
"editor.fontFamily": "Fira Code, iA Writer Duospace, Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 14,
"window.zoomLevel": -1,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"workbench.fontAliasing": "auto",
"terminal.integrated.macOptionIsMeta": true,
"prettier.bracketSpacing": true,
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontWeightBold": "700",
"terminal.integrated.lineHeight": 1.6,
"workbench.colorTheme": "Shades of Purple",
// SOP's Import Cost Extension Settings.
"importCost.largePackageColor": "#EC3A37F5",
"importCost.mediumPackageColor": "#B362FF",
"importCost.smallPackageColor": "#B362FF"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment