Created
September 14, 2020 12:48
-
-
Save lucaslgr/583e91eadcfe9664c9915c63cc8ad75a to your computer and use it in GitHub Desktop.
Settings do VsCode para JS e ES6
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
{ | |
//!Settings of Oh My Zsh | |
"terminal.integrated.shell.linux": "/bin/zsh", | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"terminal.integrated.fontFamily": "'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback', 'PowerlineSymbols'", | |
// "workbench.colorTheme": "Monokai", | |
"editor.fontSize": 15, | |
"editor.lineHeight": 26, | |
"editor.tabSize": 2, | |
"editor.tabCompletion": "on", | |
"editor.wordWrap": "on", | |
"workbench.startupEditor": "newUntitledFile", | |
"liveServer.settings.donotShowInfoMsg": true, | |
"liveServer.settings.donotVerifyTags": true, | |
"editor.formatOnSave": true, | |
"html.autoClosingTags": false, | |
"editor.autoClosingBrackets": "always", | |
"editor.autoClosingQuotes": "always", | |
"editor.minimap.renderCharacters": false, | |
// "breadcrumbs.enabled": false, //Show the tree of opened documents | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
"prettier.trailingComma": "all", | |
"html.format.wrapAttributes": "auto", | |
"html.format.wrapLineLength": 0, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment