vscodesetting/settings.json

187 lines
6.3 KiB
JSON

{
"editor.tabSize": 2,
"[cpp]": {},
"editor.rulers": [
80
],
"workbench.startupEditor": "newUntitledFile",
"workbench.colorCustomizations": {
"editor.selectionBackground": "#fd9090",
"editor.selectionHighlightBackground": "#fdbed8",
"editorOverviewRuler.findMatchForeground": "#0000ff",
"editorOverviewRuler.selectionHighlightForeground": "#ff0000",
"editorCursor.foreground": "#007523",
"editorBracketMatch.border": "#97d3aa",
"editorBracketMatch.background": "#97d3aa",
"editor.lineHighlightBackground": "#f0f0f0",
"editor.findMatchHighlightBackground": "#e8ec69",
"editor.findMatchBackground": "#e5e7a3",
"terminal.background": "#f8f8f8",
"sideBar.foreground": "#000000",
"tab.activeForeground": "#000000",
"tab.inactiveForeground": "#000000",
"quickInput.foreground": "#000000",
"editorError.foreground": "#00000000",
},
// "C_Cpp.autocomplete": "Disabled",
// "C_Cpp.formatting": "Disabled",
// "C_Cpp.errorSquiggles": "Disabled",
"C_Cpp.intelliSenseEngine": "Default",
"C_Cpp.clang_format_style": "google",
"C_Cpp.default.cppStandard": "c++11",
"C_Cpp.default.cStandard": "c11",
"C_Cpp.intelliSenseEngineFallback": "Enabled",
"C_Cpp.workspaceParsingPriority": "high",
"editor.fontSize": 13,
"problems.decorations.enabled": false,
"clangd.arguments": [
"--background-index",
"-j=6",
"--clang-tidy",
"--all-scopes-completion",
"--completion-style=detailed",
"--function-arg-placeholders",
"--header-insertion=iwyu",
"--pch-storage=disk",
],
"editor.tokenColorCustomizations": {
"comments":"#7c7c7c",
"keywords": "#808000",
"variables": "#000000",
"strings": "#008080",
"functions": "#800000",
"numbers": "#008000",
"types": "#400080",
},
// "editor.semanticHighlighting.enabled": true,
// "editor.semanticTokenColorCustomizations": {
// "enabled": true,
// "rules": {
// "parameter": "#723030",
// "class": {
// "foreground": "#000000"
// },
// "function": {
// "foreground": "#800000"
// },
// "variable": "#000000",
// "string": "#008080",
// "keyword": "#070000",
// "number": "#008000",
// "type": "#400080",
// "enum": "#397797",
// "enumMember": "#397797",
// "macro": {
// "foreground": "#8f5daf",
// },
// "method": {
// "foreground": "#000000",
// },
// "comment": "#7c7c7c",
// "namespace": {
// "foreground": "#000000",
// },
// "*.readonly": {
// // "fontStyle": "bold"
// },
// "variable.readonly": {
// "foreground": "#8f5daf",
// },
// "*.static": {
// "fontStyle": "italic"
// },
// "property": {
// "foreground": "#000000",
// // "fontStyle": "underline"
// },
// }
// },
"terminal.integrated.scrollback": 10000,
"explorer.autoReveal": false,
"editor.minimap.maxColumn": 80,
"editor.minimap.showSlider": "always",
"editor.minimap.renderCharacters": false,
"window.zoomLevel": 1.5,
"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,
"explorer.openEditors.visible": 0,
"breadcrumbs.enabled": true,
"terminal.integrated.fontSize": 13,
"window.menuBarVisibility": "compact",
"files.maxMemoryForLargeFilesMB": 8192,
"json.maxItemsComputed": 50000,
"cmake.configureOnOpen": false,
"extensions.ignoreRecommendations": false,
"editor.cursorBlinking": "solid",
"window.title": "【 ${folderName} 】【 ${remoteName} 】${folderPath}",
"python.showStartPage": false,
"workbench.colorTheme": "Default Light+",
"rust.show_warnings": false,
"git.detectSubmodules": false,
"python.languageServer": "Pylance",
"editor.fontFamily": "menlo,sarasa-fixed-sc-regular,NotoSansMonoCJKsc-Regular",
"rst.preview.pythonPath": "",
"terminal.integrated.inheritEnv": false,
"python.terminal.activateEnvironment": false,
"[python]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"editor.suggestSelection": "first",
"workbench.editor.decorations.badges": false,
"workbench.iconTheme": "file-icons",
"open-in-vim.restoreCursorAfterVim": true,
"terminal.integrated.tabs.location": "left",
"terminal.integrated.tabs.enabled": false,
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"security.workspace.trust.untrustedFiles": "open",
"workbench.editor.enablePreview": false,
"files.associations": {
"BUILD": "bazel"
},
"scm.countBadge": "off",
"workbench.statusBar.visible": false,
"workbench.activityBar.visible": false,
"editor.renderWhitespace": "boundary",
"terminal.integrated.defaultProfile.linux": "zsh",
}