Skip to content

Instantly share code, notes, and snippets.

@seanjensengrey
Created May 5, 2018 17:16
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 seanjensengrey/c472acc5469c7af6b89ed3bfe7a799fd to your computer and use it in GitHub Desktop.
Save seanjensengrey/c472acc5469c7af6b89ed3bfe7a799fd to your computer and use it in GitHub Desktop.
vscode settings override
{
"workbench.colorCustomizations": {
"contrastActiveBorder": "#c210bc",
"input.border": "#FE2EF7",
"selection.background": "#58FAF4",
"editor.selectionBackground": "#58FAF4",
"widget.shadow": "#76e67b",
"editor.lineHighlightBorder": "#ff0000"
},
"editor.wrappingIndent": "indent",
"editor.quickSuggestions": false,
"editor.quickSuggestionsDelay": 250,
"editor.fontSize": 15,
"editor.rulers": [
4
],
"[plaintext]": {
"editor.wordBasedSuggestions": true,
"editor.acceptSuggestionOnEnter": "off",
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
"editor.cursorStyle": "block"
},
"[markdown]": {
"editor.formatOnSave": true,
"editor.wordWrap": "on",
"editor.renderWhitespace": "all",
"editor.acceptSuggestionOnEnter": "off"
},
"window.zoomLevel": 0,
"extensions.ignoreRecommendations": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment