Last active
August 15, 2018 13:56
-
-
Save derek-knox/7ab3a2b8fc0f1f1cf3f28c2fcfbc8c2f to your computer and use it in GitHub Desktop.
VSCode User Settings in case an update nukes them again
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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