Created
May 15, 2020 00:56
-
-
Save ScottTodd/22d46d1be58dd6dab560259aa6d6816a to your computer and use it in GitHub Desktop.
VSCode user settings
This file contains hidden or 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
{ | |
"workbench.iconTheme": "vscode-icons", | |
"workbench.editor.enablePreview": false, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"files.trimTrailingWhitespace": true, | |
"editor.cursorBlinking": "phase", | |
"editor.formatOnSave": true, | |
"clang-format.fallbackStyle": "Google", | |
"window.title": "${dirty}${activeEditorLong}${separator}${rootName}${separator}${appName}", | |
"highlight.regexes": { | |
"((?:<!-- *)?(?:#|// @|//|./\\*+|<!--|--|\\* @|{!|{{!--|{{!) *TODO(?:\\s*\\([^)]+\\))?:?)((?!\\w)(?: *-->| *\\*/| *!}| *--}}| *}}|(?= *(?:[^:]//|/\\*+|<!--|@|--|{!|{{!--|{{!))|(?: +[^\\n@]*?)(?= *(?:[^:]//|/\\*+|<!--|@|--(?!>)|{!|{{!--|{{!))|(?: +[^@\\n]+)?))": { | |
"filterFileRegex": ".*(?<!CHANGELOG.md)$", | |
"decorations": [ | |
{ | |
"backgroundColor": "#444444cc", | |
"color": "#aaa", | |
}, | |
{ | |
"backgroundColor": "#444444cc", | |
"color": "#ccc" | |
} | |
] | |
}, | |
"(DO NOT SUBMIT)": [ | |
{ | |
"color": "red" | |
}, | |
] | |
}, | |
"editor.tabCompletion": "onlySnippets" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment