Skip to content

Instantly share code, notes, and snippets.

@victorwpbastos
Created October 4, 2019 16:35
Show Gist options
  • Save victorwpbastos/635dbe0d1f3ee4fe99698a302d56da09 to your computer and use it in GitHub Desktop.
Save victorwpbastos/635dbe0d1f3ee4fe99698a302d56da09 to your computer and use it in GitHub Desktop.
VS Code settings
{
"editor.detectIndentation": false,
"editor.fontFamily": "Fira Code",
"editor.fontWeight": "300",
"editor.fontLigatures": false,
"editor.fontSize": 15,
"editor.formatOnPaste": false,
"editor.formatOnSave": false,
"editor.insertSpaces": false,
"editor.lineHeight": 24,
"editor.minimap.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "line",
"editor.showFoldingControls": "always",
"editor.snippetSuggestions": "top",
"editor.tabSize": 4,
"editor.renderWhitespace": "all",
"emmet.syntaxProfiles": {
"vue": "html",
"vue-html": "html",
"javascript": "jsx"
},
"emmet.triggerExpansionOnTab": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"explorer.openEditors.visible": 0,
"extensions.ignoreRecommendations": true,
"files.eol": "\n",
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"telemetry.enableCrashReporter": false,
"telemetry.enableTelemetry": false,
"terminal.integrated.cursorStyle": "block",
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
// "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
// "terminal.integrated.shellArgs.windows": ["--command=usr/bin/bash.exe", "-l", "-i"],
"terminal.integrated.env.windows": { "TERM": "cygwin" },
"workbench.editor.highlightModifiedTabs": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.tips.enabled": false,
"workbench.iconTheme": "material-icon-theme",
"workbench.colorTheme": "Dracula",
"workbench.tree.indent": 22,
"workbench.tree.renderIndentGuides": "none",
"breadcrumbs.enabled": false,
"window.zoomLevel": 0,
"eslint.alwaysShowStatus": true,
"eslint.autoFixOnSave": true,
"eslint.options": {
"extensions": [".js", ".jsx", ".ts", ".vue"]
},
"eslint.validate": [
{ "language": "javascript", "autoFix": true },
{ "language": "javascriptreact", "autoFix": true },
{ "language": "typescript", "autoFix": true },
{ "language": "typescriptreact", "autoFix": true },
{ "language": "vue", "autoFix": true }
],
"vetur.completion.autoImport": true,
"vetur.format.options.tabSize": 4,
"vetur.format.options.useTabs": true,
"vetur.format.scriptInitialIndent": true,
"vetur.format.styleInitialIndent": true,
"liveSassCompile.settings.generateMap": false,
"liveSassCompile.settings.autoprefix": [
"ie >= 11"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment