vscodesetting/settings.json

98 lines
3.2 KiB
JSON

{
"workbench.colorTheme": "Default Light+",
"workbench.iconTheme": "vscode-great-icons",
"editor.tabSize": 2,
"C_Cpp.errorSquiggles": "Disabled",
"workbench.editor.enablePreview": false,
"[cpp]": {},
"C_Cpp.clang_format_style": "google",
"editor.rulers": [
80
],
"workbench.startupEditor": "newUntitledFile",
"workbench.colorCustomizations": {
"editor.selectionBackground": "#ffa9cd",
"editor.selectionHighlightBackground": "#ffa8a8",
"editorOverviewRuler.findMatchForeground": "#e0e000",
"editorOverviewRuler.selectionHighlightForeground": "#ff0000",
"editorCursor.foreground": "#007523",
"editorBracketMatch.border": "#97d3aa",
"editorBracketMatch.background": "#97d3aa",
"editor.lineHighlightBackground": "#f0f0f0",
"editor.findMatchHighlightBackground": "#aeda00",
"terminal.background" : "#f8f8f8",
},
"C_Cpp.updateChannel": "Insiders",
"editor.fontSize": 14,
"editor.tokenColorCustomizations": {
"comments":"#7c7c7c",
"keywords": "#919100",
"variables": "#000000",
"strings": "#009191",
"functions": "#910000",
"numbers": "#009100",
},
"terminal.integrated.scrollback": 10000,
"explorer.autoReveal": false,
"editor.minimap.maxColumn": 80,
"editor.minimap.showSlider": "always",
"editor.minimap.renderCharacters": false,
"window.zoomLevel": 1.0,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.mode.statusBar.enabled": false,
"gitlens.hovers.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.recentChange.enabled": false,
"python.linting.pylintEnabled": false,
"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
}
},
"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,
"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,
"workbench.statusBar.visible": true,
"workbench.activityBar.visible": true,
"explorer.openEditors.visible": 20,
"workbench.editor.showTabs": true,
"breadcrumbs.enabled": true,
"terminal.integrated.fontSize": 14,
"window.menuBarVisibility": "compact",
"diffEditor.ignoreTrimWhitespace": false,
"files.maxMemoryForLargeFilesMB": 8192,
"json.maxItemsComputed": 50000,
"editor.cursorBlinking": "solid",
"window.title": "${rootName}",
}