Created
August 7, 2019 20:32
-
-
Save vbogretsov/25990996115353363461b5c9fd8f74a3 to your computer and use it in GitHub Desktop.
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.colorTheme": "Mariana Nord", | |
| "C_Cpp.updateChannel": "Insiders", | |
| "files.exclude": { | |
| "**/.DS_Store": true, | |
| "**/.git": true, | |
| "**/.hg": true, | |
| "**/.svn": true, | |
| "**/*.o": true, | |
| "**/CVS": true, | |
| "**/node_modules": true, | |
| "**/__pycache__": true, | |
| "**/.venv": true, | |
| }, | |
| "editor.fontFamily": "SFMono Nerd Font", | |
| "editor.minimap.maxColumn": 120, | |
| "editor.rulers": [79], | |
| "editor.renderWhitespace": "all", | |
| "editor.tokenColorCustomizations": { | |
| "[Visual Studio Dark]": { | |
| "types": "#6699cc", | |
| "functions": "#5fb4b4", | |
| "variables": "#d8dee9", | |
| "numbers": "#f97b58", | |
| "strings": "#99c794", | |
| "comments": "#647382", | |
| "keywords": "#c695c6", | |
| "textMateRules": [ | |
| { | |
| "scope": "storage.type", | |
| "settings": {"foreground": "#6699cc"} | |
| }, | |
| { | |
| "scope": "entity.name.function", | |
| "settings": {"foreground": "#5fb4b4"} | |
| }, | |
| { | |
| "scope": [ | |
| "meta.function-call", | |
| "source.cpp meta.block variable.other" | |
| ], | |
| "settings": {"foreground": "#5fb4b4"} | |
| }, | |
| { | |
| "scope": "constant.numeric", | |
| "settings": {"foreground": "#f97b58"} | |
| }, | |
| { | |
| "scope": "comment", | |
| "settings": {"foreground": "#647382"} | |
| }, | |
| { | |
| "scope": [ | |
| "constant.language", | |
| "variable.language" | |
| ], | |
| "settings": {"foreground": "#d8dee9"} | |
| }, | |
| { | |
| "scope": "keyword.control", | |
| "settings": {"foreground": "#c695c6"} | |
| }, | |
| { | |
| "scope": "keyword.operator", | |
| "settings": {"foreground": "#ec5f66" } | |
| }, | |
| { | |
| "scope": "storage.modifier", | |
| "settings": {"foreground": "#ec5f66"} | |
| }, | |
| { | |
| "scope": "punctuation", | |
| "settings": {"foreground": "#d8dee9"} | |
| }, | |
| { | |
| "scope": "keyword.function.go", | |
| "settings": {"foreground": "#c695c6"} | |
| }, | |
| ] | |
| } | |
| }, | |
| "workbench.startupEditor": "newUntitledFile", | |
| "workbench.colorCustomizations": { | |
| "[Mariana Nord]": { | |
| "syntax.type": "#6699cc", // done | |
| "syntax.scope": "#d8dee9", // done | |
| "syntax.function": "#5fb4b4", // done | |
| "syntax.variable": "#d8dee9", // done | |
| "syntax.number": "#f97b58", // done | |
| "syntax.string": "#99c794", // done | |
| "syntax.comment": "#647382", // done | |
| "syntax.constant": "#ec5f66", // done | |
| "syntax.directive": "#c695c6", // done | |
| "syntax.control": "#c695c6", // done | |
| "syntax.operator": "#ec5f66", // done | |
| "syntax.modifier": "#c695c6", // done | |
| "syntax.punctuation": "#d8dee9", // done | |
| } | |
| }, | |
| "go.useLanguageServer": true, | |
| "[cpp]": { | |
| "editor.defaultFormatter": "xaver.clang-format" | |
| }, | |
| "[c]": { | |
| "editor.defaultFormatter": "xaver.clang-format" | |
| }, | |
| "window.zoomLevel": 0 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment