Created
July 16, 2020 23:18
-
-
Save sbrocket/4095bd960e25b1946aa73b735009445a to your computer and use it in GitHub Desktop.
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
{ | |
"editor.minimap.enabled": false, | |
"editor.fontSize": 11, | |
"editor.fontFamily": "Monaco, Menlo, 'Courier New', monospace", | |
"editor.folding": false, | |
"editor.glyphMargin": false, | |
"workbench.activityBar.visible": true, | |
"workbench.colorCustomizations": { | |
"editor.background": "#000000", // One Dark Pro = #282c34, #141820, #080C14 | |
"editor.foreground": "#ffffff", // One Dark Pro = #abb2bf, dadee7 | |
"editorGroup.border": "#bbbbbb", // 0a6ba3, 525864, 294666, 54708d | |
}, | |
"workbench.startupEditor": "welcomePage", | |
"workbench.colorTheme": "One Dark Pro", | |
"zenMode.restore": true, | |
"files.watcherExclude": { <snipped, long list> }, | |
"files.associations": { | |
"*.cml": "json5", | |
}, | |
"clangd.path": "<some_path>/clangd_snapshot_20200607/bin/clangd", | |
"clangd.arguments": [ | |
// Disable clang-tidy, was causing crashes, b/158858558 | |
"-clang-tidy=0", | |
"-background-index" | |
], | |
"editor.formatOnSave": true, | |
"[cpp]": { | |
"editor.defaultFormatter": "xaver.clang-format" | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment