Skip to content

Instantly share code, notes, and snippets.

@tanmayrajani
Created January 3, 2020 10:41
Show Gist options
  • Save tanmayrajani/2cde025f6dad4d26dab0a3b506e7d8fa to your computer and use it in GitHub Desktop.
Save tanmayrajani/2cde025f6dad4d26dab0a3b506e7d8fa to your computer and use it in GitHub Desktop.
current vscode settings.json
// Place your settings in this file to overwrite the default settings
{
"material-icon-theme.showWelcomeMessage": false,
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.showUpdateMessage": false,
"editor.formatOnSave": false,
"git.confirmSync": false,
"editor.tabCompletion": "on",
"telemetry.enableTelemetry": false,
"workbench.colorCustomizations": {
"editor.selectionBackground": "#403216",
"editor.selectionHighlightBackground": "#713246",
"editor.findMatchBackground": "#101010",
"contrastBorder": "#101010",
"contrastActiveBorder": "#000000"
},
"editor.quickSuggestionsDelay": 5,
"files.autoSave": "afterDelay",
"editor.snippetSuggestions": "top",
"editor.rulers": [
120
],
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/**": true,
"**/bower_components/**": true,
"**/target/**": true
},
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.sh": true
},
"git.autofetch": true,
"eslint.nodePath": "/usr/bin/node",
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.editor.enablePreview": false,
"diffEditor.ignoreTrimWhitespace": false,
"gitProjectManager.baseProjectsFolders": [
"/home/tanmay.rajani/rms",
"/home/tanmay.rajani/opensource"
],
"gitProjectManager.openInNewWindow": true,
"files.autoSaveDelay": 500,
"git.enableSmartCommit": true,
"window.openFoldersInNewWindow": "on",
"[javascript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"workbench.colorTheme": "Tomorrow Night Bright Operator Mono",
"editor.fontSize": 16,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"window.zoomLevel": -0.4,
"html.format.contentUnformatted": "",
"html.format.unformatted": "",
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
"editor.fontFamily": "Operator Mono Book",
"typescript.updateImportsOnFileMove.enabled": "always",
"files.insertFinalNewline": true,
"[properties]": {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment