vscodesetting/settings.json

91 lines
3.0 KiB
JSON
Raw Normal View History

2019-04-06 22:52:21 +08:00
{
2019-08-14 11:12:18 +08:00
"python.pythonPath": "/home/colin/anaconda3/bin/python",
2019-04-06 22:52:21 +08:00
"workbench.colorTheme": "Default Light+",
"editor.tabSize": 2,
"C_Cpp.errorSquiggles": "Disabled",
"workbench.editor.enablePreview": false,
"[cpp]": {},
"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
"editor.fontFamily": "SF Mono",
"C_Cpp.updateChannel": "Insiders",
"http.proxySupport": "off",
2019-05-31 16:55:11 +08:00
"editor.fontWeight": "500",
"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-06-03 15:22:00 +08:00
"terminal.integrated.fontWeight": "500",
2019-08-14 11:12:18 +08:00
"terminal.integrated.fontFamily": "SF Mono",
"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,
2019-08-14 11:12:18 +08:00
"window.zoomLevel": 0,
"editor.fontSize": 15,
"debug.console.fontSize": 15,
"terminal.integrated.fontSize": 16,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.mode.statusBar.enabled": false,
"gitlens.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
}
},
"hexdump.btnEnabled": false,
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-04-06 22:52:21 +08:00
}