Skip to content

Instantly share code, notes, and snippets.

@HZooly
Last active February 27, 2020 10:12
Show Gist options
  • Save HZooly/a11de48d4ca4b1bbc488819dfbea4545 to your computer and use it in GitHub Desktop.
Save HZooly/a11de48d4ca4b1bbc488819dfbea4545 to your computer and use it in GitHub Desktop.
VSCode Settings
{
"workbench.iconTheme": "material-icon-theme",
"editor.fontFamily": "Fira Code",
"terminal.integrated.fontFamily": "'Operator Mono', 'Inconsolata for Powerline', monospace",
"terminal.integrated.letterSpacing": 1,
"terminal.integrated.fontSize": 14,
"terminal.integrated.lineHeight": 1,
"editor.lineNumbers": "on",
"editor.fontSize": 16,
"editor.lineHeight": 36,
"editor.letterSpacing": 1,
"editor.renderIndentGuides": false,
"editor.fontWeight": "400",
"editor.fontLigatures": true,
"editor.cursorStyle": "underline",
"editor.cursorBlinking": "blink",
"editor.snippetSuggestions": "top",
"editor.formatOnSave": false,
"editor.glyphMargin": true,
"workbench.fontAliasing": "auto",
"breadcrumbs.enabled": true,
"editor.tabSize": 2,
"files.insertFinalNewline": true,
"git-autoconfig.configList": [
{
"user.email": "[email protected]",
"user.name": "Hugo Torzuoli"
},
{
"user.email": "[email protected]",
"user.name": "HZooly"
},
{}
],
"workbench.editor.showTabs": true,
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
"comment",
"keyword", //import, export, return…
"constant", //String, Number, Boolean…, this, super
"storage.modifier", //static keyword
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": [
//following will be excluded from italics (VSCode has some defaults for italics)
"invalid",
"keyword.operator",
"constant.numeric.css",
"keyword.other.unit.px.css",
"constant.numeric.decimal.js",
"constant.numeric.json"
],
"settings": {
"fontStyle": ""
}
}
]
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"files.trimTrailingWhitespace": true,
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[vue]": {
"editor.defaultFormatter": "octref.vetur"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"workbench.colorTheme": "Cobalt2",
"workbench.sideBar.location": "left",
"typescript.updateImportsOnFileMove.enabled": "always"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment