Skip to content

Instantly share code, notes, and snippets.

@akshansh2000
Created July 18, 2020 12:31
Show Gist options
  • Save akshansh2000/65524fc58246797249d225880bae7cfa to your computer and use it in GitHub Desktop.
Save akshansh2000/65524fc58246797249d225880bae7cfa to your computer and use it in GitHub Desktop.
VSCode Settings File
{
"workbench.startupEditor": "newUntitledFile",
"files.autoSave": "afterDelay",
"editor.tabSize": 2,
"editor.suggestSelection": "recentlyUsedByPrefix",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"editor.tabCompletion": "on",
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": true,
"editor.formatOnSave": true,
"diffEditor.ignoreTrimWhitespace": false,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.acceptSuggestionOnEnter": "off",
"editor.suggest.maxVisibleSuggestions": 15,
"window.menuBarVisibility": "toggle",
"workbench.activityBar.visible": true,
"C_Cpp.clang_format_style": "{ BasedOnStyle: Google }",
"python.jediEnabled": false,
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
},
"workbench.colorTheme": "Material Theme Darker",
"files.autoSaveDelay": 1,
"python.analysis.diagnosticPublishDelay": 1,
"java.dependency.refreshDelay": 1,
"errorLens.delay": 1,
"editor.quickSuggestionsDelay": 1,
"terminal.integrated.shell.linux": "/usr/bin/zsh",
"window.zoomLevel": 0,
"workbench.colorCustomizations": {
"editor.selectionBackground": "#00000080",
"editorSuggestWidget.selectedBackground": "#00000080",
"list.focusBackground": "#00000080",
"panel.border": "#00000000",
"sideBar.border": "#00000000",
"terminal.border": "#ffffff",
"statusBar.border": "#00000000",
"diffEditor.border": "#ffffff"
},
"color-highlight.markerType": "dot-before",
"editor.colorDecorators": false,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"python.venvPath": "~/Desktop/Repositories",
"editor.renderWhitespace": "boundary"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment