Skip to content

Instantly share code, notes, and snippets.

@jwrigh26
Created February 16, 2023 23: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 jwrigh26/ee555e5e5d2f4eaf39d3da5b4a81745f to your computer and use it in GitHub Desktop.
Save jwrigh26/ee555e5e5d2f4eaf39d3da5b4a81745f to your computer and use it in GitHub Desktop.
My horrible VSCode user settings
{
"workbench.iconTheme": "material-icon-theme",
// "workbench.editor.showTabs": false,
"[javascript]": {
"editor.formatOnSave": false,
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.detectIndentation": false,
},
"[json]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"files.autoSave": "onFocusChange",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.exclude": {
"**/.classpath": true,
"**/.factorypath": true,
"**/.project": true,
"**/.settings": true,
"node_modules/": true
},
"redhat.telemetry.enabled": false,
"java.configuration.runtimes": [
{
"name": "JavaSE-1.8",
"path": "C:\\Program Files\\AdoptOpenJDK\\jdk-8.0.292.10-hotspot"
}
],
"[java]": {
"editor.defaultFormatter": "redhat.java"
},
"explorer.confirmDragAndDrop": false,
"workbench.colorTheme": "Gruvbox 64 Dark",
"window.zoomLevel": 1
}
@jwrigh26
Copy link
Author

{ "workbench.colorTheme": "Monokai", "workbench.iconTheme": "material-icon-theme", "window.zoomLevel": 1, "editor.defaultFormatter": "esbenp.prettier-vscode", "files.autoSave": "onFocusChange", "editor.suggestSelection": "first", "[javascript]": { "editor.formatOnSave": false, "editor.insertSpaces": true, "editor.tabSize": 2, "editor.detectIndentation": false, }, "[json]": { "editor.insertSpaces": true, "editor.tabSize": 2 }, "files.exclude": { "**/.classpath": true, "**/.factorypath": true, "**/.project": true, "**/.settings": true, "node_modules/": true }, }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment