Skip to content

Instantly share code, notes, and snippets.

@guilherfp
Created August 8, 2019 16:55
Show Gist options
  • Save guilherfp/b0985af1ce46e327bcf9a1c819cfa072 to your computer and use it in GitHub Desktop.
Save guilherfp/b0985af1ce46e327bcf9a1c819cfa072 to your computer and use it in GitHub Desktop.
VS Code settings
{
"workbench.colorTheme": "Dracula",
"window.zoomLevel": 0,
"editor.fontSize": 12,
"editor.fontFamily": "Fira Code",
"editor.tabSize": 2,
"editor.wordWrapColumn": 100,
"editor.fontLigatures": true,
"workbench.iconTheme": "material-icon-theme",
"typescript.updateImportsOnFileMove.enabled": "always",
"editor.renderWhitespace": "all",
"git.autofetch": true,
"workbench.startupEditor": "newUntitledFile",
"auto-close-tag.activationOnLanguage": [
"xml",
"markdown",
"vue",
"html",
"lang-cfml",
"cfml",
"HTML (Eex)"
],
"terminal.integrated.fontSize": 12,
"markdown.preview.fontSize": 12,
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.quoteStyle": "single",
"editor.renderControlCharacters": false,
"window.titleBarStyle": "native",
"git.confirmSync": false,
"editor.rulers": [100],
"html.format.wrapLineLength": 100,
"generate-translation.path": "/src/i18n",
"sassFormat.useSingleQuotes": true,
"sassFormat.indent": 2,
"scss.showErrors": false,
"terminal.integrated.fontFamily": "Fira Code",
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"editor.formatOnSave": true,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.defaultFormatter": "sasa.vscode-sass-format"
},
"files.enableTrash": false,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": false,
"breadcrumbs.enabled": true,
"git.enableSmartCommit": true,
"editor.parameterHints.enabled": false,
"liveshare.featureSet": "insiders"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment