Skip to content

Instantly share code, notes, and snippets.

@jchck
Created March 27, 2019 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jchck/a7a1eec7700e3aaff5194da7b4857d16 to your computer and use it in GitHub Desktop.
Save jchck/a7a1eec7700e3aaff5194da7b4857d16 to your computer and use it in GitHub Desktop.
VS Code Settings
{
"workbench.colorTheme": "Cobalt2",
"editor.fontSize": 17,
"editor.fontFamily": "'Fira Code'",
"editor.fontLigatures": true,
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.wordWrapColumn": 90,
"workbench.statusBar.feedback.visible": false,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"html.format.indentHandlebars": true,
"html.format.indentInnerHtml": true,
"markdown.preview.fontSize": 14,
"markdown.preview.fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe WPC', 'Segoe UI', 'HelveticaNeue-Light', 'Ubuntu', 'Droid Sans', sans-serif",
"terminal.external.osxExec": "Hyper.app",
"terminal.integrated.fontFamily": "",
"terminal.integrated.fontSize": 12,
"git.enableSmartCommit": true,
"editor.lineHeight": 25,
"editor.letterSpacing": 0.5,
"editor.fontWeight": "400",
"editor.cursorStyle": "line",
"editor.cursorWidth": 3,
"editor.cursorBlinking": "phase",
"editor.renderWhitespace": "all",
"importCost.bundleSizeDecoration": "minified",
"importCost.showCalculatingDecoration": true,
"window.zoomLevel": 0,
"javascript.updateImportsOnFileMove.enabled": "always",
"html-css-class-completion.enableEmmetSupport": true,
"files.associations": {
"*.css": "postcss"
},
"advancedNewFile.exclude": {
"node_modules": true
},
"todohighlight.isCaseSensitive": false,
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"liquid": "html"
},
"editor.acceptSuggestionOnEnter": "smart",
"workbench.startupEditor": "newUntitledFile",
"typescript.validate.enable": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment