Skip to content

Instantly share code, notes, and snippets.

@enesusta
Last active April 15, 2020 00:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save enesusta/99b62282d383456e61ef35a5d846a88c to your computer and use it in GitHub Desktop.
Save enesusta/99b62282d383456e61ef35a5d846a88c to your computer and use it in GitHub Desktop.
VSCode Settings
{
"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