Last active
April 15, 2020 00:11
-
-
Save enesusta/99b62282d383456e61ef35a5d846a88c to your computer and use it in GitHub Desktop.
VSCode Settings
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
{ | |
"editor.formatOnSave": false, | |
"terminal.integrated.fontSize": 14, | |
"workbench.colorTheme": "One Dark Pro", | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"html.format.wrapLineLength": 100, | |
"html.format.wrapAttributes": "force-expand-multiline", // or "auto", "force", "force-aligned", "aligned-multiple", | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
"[javascript]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "vscode.typescript-language-features", | |
}, | |
"[html]": { | |
// "editor.formatOnSave": true, | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"[scss]": { | |
"editor.formatOnSave": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[python]": { | |
"files.encoding": "utf8" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"C_Cpp.updateChannel": "Insiders", | |
"liveServer.settings.donotShowInfoMsg": true, | |
"latex-workshop.view.pdf.viewer": "tab", | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment