Created
July 24, 2019 19:14
-
-
Save rogeriomq/208d50d55e4bd44e15ea270eff86fa8b to your computer and use it in GitHub Desktop.
My configs VSCODE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"window.zoomLevel": 2, | |
"window.menuBarVisibility": "visible", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"workbench.colorTheme": "Dracula", | |
"workbench.activityBar.visible": true, | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.startupEditor": "newUntitledFile", | |
"vetur.validation.template": false, | |
"vetur.completion.useScaffoldSnippets": false, | |
"eslint.validate": [ | |
{ | |
"language": "vue", | |
"autoFix": true | |
}, | |
{ | |
"language": "html", | |
"autoFix": true | |
}, | |
{ | |
"language": "javascript", | |
"autoFix": true | |
}, | |
{ | |
"language": "javascriptreact", | |
"autoFix": true | |
}, | |
{ | |
"language": "typescript", | |
"autoFix": true | |
}, | |
{ | |
"language": "typescriptreact", | |
"autoFix": true | |
} | |
], | |
"eslint.autoFixOnSave": true, | |
"editor.formatOnSave": false, | |
"editor.mouseWheelZoom": true, | |
"editor.renderLineHighlight": "gutter", | |
"editor.wordWrap": "on", | |
"editor.fontFamily": "Fira Code", | |
"editor.suggestSelection": "first", | |
"editor.fontLigatures": true, | |
"editor.tabSize": 2, | |
"editor.renderWhitespace": "none", | |
"editor.rulers": [80, 120], | |
"editor.multiCursorModifier": "ctrlCmd", | |
"git.enableSmartCommit": true, | |
"git.autofetch": true, | |
"git.confirmSync": false, | |
"explorer.autoReveal": false, | |
"explorer.confirmDelete": false, | |
"breadcrumbs.enabled": true, | |
"vsicons.dontShowNewVersionMessage": true, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"terminal.integrated.rendererType": "dom", | |
"diffEditor.ignoreTrimWhitespace": true, | |
"emmet.syntaxProfiles": { | |
"javascript": "jsx", | |
"nunjucks": "html" | |
}, | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact", | |
"nunjucks": "html" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment