Skip to content

Instantly share code, notes, and snippets.

@PranjalAgni
Created February 10, 2020 09:34
Show Gist options
  • Select an option

  • Save PranjalAgni/6e99f3189ecd9b76385d3cfe41238b9a to your computer and use it in GitHub Desktop.

Select an option

Save PranjalAgni/6e99f3189ecd9b76385d3cfe41238b9a to your computer and use it in GitHub Desktop.
Personal VS Code user settings
{
"editor.snippetSuggestions": "top",
"workbench.iconTheme": "vscode-icons",
"editor.multiCursorModifier": "ctrlCmd",
"files.autoSave": "onFocusChange",
"editor.tabSize": 2,
"editor.fontSize": 18,
"editor.fontFamily": "Anonymous Pro",
"editor.formatOnPaste": false,
"editor.minimap.enabled": false,
"editor.lineHeight": 0,
"terminal.integrated.fontSize": 16,
"explorer.openEditors.visible": 0,
"editor.formatOnSave": true,
"window.zoomLevel": 1,
"prettier.singleQuote": true,
"emmet.showAbbreviationSuggestions": false,
"workbench.colorCustomizations": {
"editor.selectionBackground": "#00ff0055",
"activityBarBadge.background": "#C6FF00",
"list.activeSelectionForeground": "#C6FF00",
"list.inactiveSelectionForeground": "#C6FF00",
"list.highlightForeground": "#C6FF00",
"scrollbarSlider.activeBackground": "#C6FF0050",
"editorSuggestWidget.highlightForeground": "#C6FF00",
"textLink.foreground": "#C6FF00",
"progressBar.background": "#C6FF00",
"pickerGroup.foreground": "#C6FF00",
"tab.activeBorder": "#C6FF00",
"notificationLink.foreground": "#C6FF00",
"editorWidget.resizeBorder": "#C6FF00",
"editorWidget.border": "#C6FF00",
"settings.modifiedItemIndicator": "#C6FF00",
"settings.headerForeground": "#C6FF00",
"panelTitle.activeBorder": "#C6FF00",
"breadcrumb.activeSelectionForeground": "#C6FF00",
"menu.selectionForeground": "#C6FF00",
"menubar.selectionForeground": "#C6FF00",
"editor.findMatchBorder": "#C6FF00",
"selection.background": "#C6FF0040"
},
"editor.codeActionsOnSave": {
"source.fixAll.tslint": true,
"source.fixAll.eslint": true
},
"java.errors.incompleteClasspath.severity": "ignore",
"workbench.startupEditor": "newUntitledFile",
"javascript.preferences.quoteStyle": "single",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"todo-tree.general.tags": [
"TODO",
"FIXME",
"todo"
],
"editor.fontLigatures": true,
"git.autofetch": true,
"workbench.colorTheme": "Seti Black",
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"materialTheme.accent": "Acid Lime",
"java.configuration.checkProjectSettingsExclusions": false,
"diffEditor.ignoreTrimWhitespace": true,
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment