2019-04-06 22:52:21 +08:00
|
|
|
{
|
|
|
|
"workbench.colorTheme": "Default Light+",
|
|
|
|
"editor.tabSize": 2,
|
|
|
|
"C_Cpp.errorSquiggles": "Disabled",
|
|
|
|
"workbench.editor.enablePreview": false,
|
|
|
|
"[cpp]": {},
|
2020-05-18 15:56:58 +08:00
|
|
|
"C_Cpp.clang_format_style": "google",
|
2019-04-08 17:49:13 +08:00
|
|
|
"editor.rulers": [
|
|
|
|
80
|
|
|
|
],
|
|
|
|
"workbench.startupEditor": "newUntitledFile",
|
2019-04-09 19:47:10 +08:00
|
|
|
"workbench.colorCustomizations": {
|
2019-05-05 19:21:00 +08:00
|
|
|
"editor.selectionBackground": "#ffa9cd",
|
2019-04-10 16:12:19 +08:00
|
|
|
"editor.selectionHighlightBackground": "#ffa8a8",
|
2019-04-09 19:47:10 +08:00
|
|
|
"editorOverviewRuler.findMatchForeground": "#0000ff",
|
2019-04-10 16:12:19 +08:00
|
|
|
"editorOverviewRuler.selectionHighlightForeground": "#ff0000",
|
2019-04-09 19:47:10 +08:00
|
|
|
"editorCursor.foreground": "#007523",
|
|
|
|
"editorBracketMatch.border": "#fffb00",
|
|
|
|
"editorBracketMatch.background": "#fffb00",
|
2019-06-10 14:13:08 +08:00
|
|
|
"terminal.background" : "#f8f8f8",
|
2019-05-05 10:21:33 +08:00
|
|
|
},
|
2019-08-14 11:12:18 +08:00
|
|
|
"C_Cpp.updateChannel": "Insiders",
|
2020-05-18 15:56:58 +08:00
|
|
|
"editor.fontSize": 14,
|
2019-05-31 16:55:11 +08:00
|
|
|
"editor.tokenColorCustomizations": {
|
|
|
|
"comments":"#7c7c7c",
|
2019-06-07 09:48:56 +08:00
|
|
|
"keywords": "#919100",
|
|
|
|
"variables": "#000000",
|
2019-06-03 11:26:16 +08:00
|
|
|
"strings": "#009191",
|
|
|
|
"functions": "#910000",
|
|
|
|
"numbers": "#009100",
|
2019-05-31 16:55:11 +08:00
|
|
|
},
|
2019-08-14 11:12:18 +08:00
|
|
|
"terminal.integrated.scrollback": 10000,
|
2019-06-19 10:47:51 +08:00
|
|
|
"explorer.autoReveal": false,
|
2019-06-21 11:43:28 +08:00
|
|
|
"editor.minimap.maxColumn": 80,
|
|
|
|
"editor.minimap.showSlider": "always",
|
|
|
|
"editor.minimap.renderCharacters": false,
|
2020-05-18 15:56:58 +08:00
|
|
|
"window.zoomLevel": 1.0,
|
2019-08-14 11:12:18 +08:00
|
|
|
"gitlens.currentLine.enabled": false,
|
|
|
|
"gitlens.hovers.currentLine.over": "line",
|
|
|
|
"gitlens.mode.statusBar.enabled": false,
|
|
|
|
"gitlens.hovers.enabled": false,
|
2019-08-23 23:05:15 +08:00
|
|
|
"gitlens.codeLens.authors.enabled": false,
|
|
|
|
"gitlens.codeLens.recentChange.enabled": false,
|
2019-08-14 11:12:18 +08:00
|
|
|
"python.linting.pylintEnabled": false,
|
2019-09-23 13:09:48 +08:00
|
|
|
"gitlens.menus": {
|
|
|
|
"editor": false,
|
|
|
|
"editorGroup": false,
|
|
|
|
"editorTab": false,
|
|
|
|
"explorer": false,
|
|
|
|
"scmGroup": {
|
|
|
|
"compare": true,
|
|
|
|
"openClose": true,
|
|
|
|
"stash": true,
|
|
|
|
"stashInline": true
|
|
|
|
},
|
|
|
|
"scmItem": {
|
|
|
|
"clipboard": true,
|
|
|
|
"compare": true,
|
|
|
|
"history": true,
|
|
|
|
"remote": true,
|
|
|
|
"stash": true
|
|
|
|
}
|
|
|
|
},
|
2019-09-24 14:15:26 +08:00
|
|
|
"gitlens.blame.highlight.locations": [
|
|
|
|
"gutter",
|
|
|
|
"line",
|
|
|
|
"overview"
|
|
|
|
],
|
|
|
|
"gitlens.blame.highlight.enabled": false,
|
|
|
|
"gitlens.blame.heatmap.enabled": false,
|
|
|
|
"gitlens.blame.avatars": false,
|
|
|
|
"gitlens.blame.compact": false,
|
2019-10-21 10:53:13 +08:00
|
|
|
"editor.largeFileOptimizations": false,
|
|
|
|
"C_Cpp.default.intelliSenseMode": "clang-x64",
|
|
|
|
"C_Cpp.default.cppStandard": "c++11",
|
|
|
|
"C_Cpp.default.cStandard": "c11",
|
|
|
|
"C_Cpp.intelliSenseEngineFallback": "Enabled",
|
|
|
|
"terminal.integrated.inheritEnv": false,
|
|
|
|
"python.terminal.activateEnvironment": false,
|
2019-11-02 12:05:53 +08:00
|
|
|
"workbench.statusBar.visible": true,
|
|
|
|
"workbench.activityBar.visible": true,
|
|
|
|
"explorer.openEditors.visible": 20,
|
2019-11-09 16:33:26 +08:00
|
|
|
"workbench.editor.showTabs": true,
|
2020-09-29 16:07:53 +08:00
|
|
|
"breadcrumbs.enabled": true,
|
2020-05-18 16:13:39 +08:00
|
|
|
"terminal.integrated.fontSize": 14,
|
2019-12-06 12:05:21 +08:00
|
|
|
"window.menuBarVisibility": "compact",
|
|
|
|
"diffEditor.ignoreTrimWhitespace": false,
|
|
|
|
"files.maxMemoryForLargeFilesMB": 8192,
|
2020-09-21 20:20:03 +08:00
|
|
|
"json.maxItemsComputed": 50000,
|
|
|
|
"editor.cursorBlinking": "solid",
|
2020-10-10 11:08:31 +08:00
|
|
|
"window.title": "${rootName}",
|
|
|
|
|
2019-04-06 22:52:21 +08:00
|
|
|
}
|
2020-05-02 11:15:06 +08:00
|
|
|
|