Skip to content

Instantly share code, notes, and snippets.

@derek-knox
Last active August 15, 2018 13:56
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 derek-knox/7ab3a2b8fc0f1f1cf3f28c2fcfbc8c2f to your computer and use it in GitHub Desktop.
Save derek-knox/7ab3a2b8fc0f1f1cf3f28c2fcfbc8c2f to your computer and use it in GitHub Desktop.
VSCode User Settings in case an update nukes them again
{
"window.zoomLevel": -1,
"workbench.colorTheme": "Monokai",
"workbench.colorCustomizations": {
"editor.findMatchBackground": "#135564",
"editor.findMatchBorder": "#ffffff",
"editor.findMatchHighlightBackground": "#FD5F0099",
"editor.findMatchHighlightBorder": "#99cc33",
"editor.selectionBackground": "#135564",
"editor.selectionHighlightBackground": "#FD5F0099",
"editor.selectionHighlightBorder": "#99cc33",
},
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"editor.fontSize": 14,
"editor.fontFamily": "'Fira Code'",
"editor.fontLigatures": true,
"editor.codeActionsOnSave": {
"source.organizeImports": false
},
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.defaultLanguage": "markdown",
"emmet.triggerExpansionOnTab": true,
"sublimeTextKeymap.promptV3Features": true,
"sublimeImporter.hasPromptedOnStartup": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment