Skip to content

Instantly share code, notes, and snippets.

@Nihhaar
Created August 2, 2020 17:55
Show Gist options
  • Save Nihhaar/437dab33f4129078e07b297d544a1b1a to your computer and use it in GitHub Desktop.
Save Nihhaar/437dab33f4129078e07b297d544a1b1a to your computer and use it in GitHub Desktop.
VSCode Settings Config
{
"workbench.colorTheme": "Default Light+",
"workbench.iconTheme": "material-icon-theme",
"workbench.sideBar.location": "right",
"editor.fontFamily": "'Dank Mono', 'Fira Code', 'Operator Mono Lig Book', 'FantasqueSansMono Nerd Font Mono'",
"editor.fontLigatures": true,
"editor.fontSize": 15,
"editor.detectIndentation": false,
"editor.tabSize": 4,
"[javascript]": {
"editor.tabSize": 2
},
"[json]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"prettier.tabWidth": 2,
"prettier.useTabs": true,
"bracketPairColorizer.forceIterationColorCycle": true,
"editor.renderWhitespace": "selection",
"editor.snippetSuggestions": "top",
"editor.formatOnSave": false,
"workbench.startupEditor": "newUntitledFile",
"editor.glyphMargin": true,
"workbench.editor.enablePreview": false,
"explorer.confirmDragAndDrop": false,
"files.trimTrailingWhitespace": false,
"files.trimFinalNewlines": false,
"files.insertFinalNewline": false,
"python.jediEnabled": false,
"python.linting.pylintEnabled": false,
"python.pythonPath": "/usr/local/bin/python3",
"window.zoomLevel": 1,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"breadcrumbs.enabled": false,
"sync.gist": "a10a9fd8b928ec7ee58abfb9b8b00c46",
"sync.forceUpload": true,
"extensions.ignoreRecommendations": true,
"java.jdt.ls.vmargs": "-noverify -Xmx1G -XX:+UseG1GC -XX:+UseStringDeduplication -javaagent:\"/home/nihhaar/.vscode-server/extensions/gabrielbb.vscode-lombok-0.9.9/server/lombok.jar\"",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"python.languageServer": "Microsoft",
"explorer.confirmDelete": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment