vscodesetting/settings.json

175 lines
6.5 KiB
JSON
Raw Normal View History

2019-04-06 22:52:21 +08:00
{
"editor.tabSize": 2,
2025-09-12 11:17:32 +08:00
"editor.rulers": [
80
],
2019-04-08 17:49:13 +08:00
"workbench.startupEditor": "newUntitledFile",
2019-04-09 19:47:10 +08:00
"workbench.colorCustomizations": {
2025-09-12 11:17:32 +08:00
"editor.foldBackground": "#f4efef00",
2021-12-09 19:02:48 +08:00
"editor.selectionBackground": "#fd9090",
2025-09-12 11:17:32 +08:00
"editor.selectionHighlightBackground": "#fdbed800",
"editorOverviewRuler.findMatchForeground": "#0000ff00",
"editorOverviewRuler.selectionHighlightForeground": "#ff000000",
2019-04-09 19:47:10 +08:00
"editorCursor.foreground": "#007523",
2020-10-10 17:50:05 +08:00
"editorBracketMatch.border": "#97d3aa",
"editorBracketMatch.background": "#97d3aa",
2020-10-10 17:51:23 +08:00
"editor.lineHighlightBackground": "#f0f0f0",
2025-09-12 11:17:32 +08:00
"editor.findMatchHighlightBackground": "#e8ec6900",
2021-12-09 19:02:48 +08:00
"editor.findMatchBackground": "#e5e7a3",
2021-12-09 18:49:48 +08:00
"terminal.background": "#f8f8f8",
"sideBar.foreground": "#000000",
2020-10-10 18:08:10 +08:00
"tab.activeForeground": "#000000",
2020-10-10 19:21:09 +08:00
"tab.inactiveForeground": "#000000",
"quickInput.foreground": "#000000",
2021-12-09 18:49:48 +08:00
"editorError.foreground": "#00000000",
2023-09-04 12:22:19 +08:00
},
2023-05-19 15:59:36 +08:00
"C_Cpp.errorSquiggles": "disabled",
"C_Cpp.intelliSenseEngine": "default",
2021-12-09 18:49:48 +08:00
"C_Cpp.workspaceParsingPriority": "high",
2023-09-04 12:19:32 +08:00
"editor.fontSize": 13,
2021-12-09 18:52:02 +08:00
"problems.decorations.enabled": false,
2021-12-09 19:29:46 +08:00
"editor.tokenColorCustomizations": {
2023-09-05 11:36:46 +08:00
"comments": "#7c7c7c",
2021-12-09 19:29:46 +08:00
"keywords": "#808000",
"variables": "#000000",
"strings": "#008080",
"functions": "#800000",
"numbers": "#008000",
2023-09-05 11:36:46 +08:00
"types": "#400080",
2021-12-09 19:02:48 +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,
2023-05-19 15:59:36 +08:00
"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,
"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,
2019-10-21 10:53:13 +08:00
"editor.largeFileOptimizations": false,
2020-09-29 16:07:53 +08:00
"breadcrumbs.enabled": true,
2023-09-04 12:19:32 +08:00
"terminal.integrated.fontSize": 13,
2019-12-06 12:05:21 +08:00
"files.maxMemoryForLargeFilesMB": 8192,
2020-09-21 20:20:03 +08:00
"json.maxItemsComputed": 50000,
2020-11-13 17:49:54 +08:00
"cmake.configureOnOpen": false,
"extensions.ignoreRecommendations": false,
2020-09-21 20:20:03 +08:00
"editor.cursorBlinking": "solid",
2021-05-21 14:44:06 +08:00
"window.title": "【 ${folderName} 】【 ${remoteName} 】${folderPath}",
2020-11-13 17:49:54 +08:00
"workbench.colorTheme": "Default Light+",
2020-12-01 16:31:28 +08:00
"git.detectSubmodules": false,
2023-09-04 12:19:32 +08:00
"editor.fontFamily": "menlo,sarasa-fixed-sc-regular,NotoSansMonoCJKsc-Regular",
2021-01-11 11:06:02 +08:00
"terminal.integrated.inheritEnv": false,
2021-01-22 14:05:58 +08:00
"python.terminal.activateEnvironment": false,
2021-12-09 18:49:48 +08:00
"editor.suggestSelection": "first",
2021-04-08 11:09:29 +08:00
"workbench.editor.decorations.badges": false,
2021-12-09 18:49:48 +08:00
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"security.workspace.trust.untrustedFiles": "open",
"files.associations": {
2025-09-11 16:33:23 +08:00
"BUILD": "bazel",
"*.inc": "cpp"
2021-12-09 18:49:48 +08:00
},
2021-10-03 13:56:20 +08:00
"scm.countBadge": "off",
2022-01-19 12:05:26 +08:00
"terminal.integrated.defaultProfile.linux": "zsh",
2022-02-10 20:30:28 +08:00
"editor.bracketPairColorization.enabled": true,
2024-01-13 17:15:36 +08:00
"systemverilog.formatCommand": "verible-verilog-format --column_limit 80",
2022-02-24 11:06:15 +08:00
"diffEditor.maxComputationTime": 0,
2023-05-19 15:59:36 +08:00
"terminal.integrated.tabs.enabled": false,
"files.watcherExclude": {
"**/.bloop": true,
"**/.metals": true,
"**/.ammonite": true
},
"workbench.tree.indent": 28,
2022-03-06 15:02:57 +08:00
"workbench.tree.renderIndentGuides": "always",
2023-05-19 15:59:36 +08:00
"systemverilog.maxLineCountIndexing": 1000000,
2022-04-28 12:44:20 +08:00
"cmake.configureOnEdit": false,
2025-09-10 20:21:14 +08:00
"window.zoomLevel": 0.6,
2023-04-20 15:52:28 +08:00
"editor.autoClosingBrackets": "never",
"editor.autoClosingQuotes": "never",
"editor.autoClosingOvertype": "never",
2023-05-19 15:59:36 +08:00
"editor.autoClosingDelete": "never",
"fonted.font": "menlo",
"git.openRepositoryInParentFolders": "never",
2023-05-23 11:03:57 +08:00
"C_Cpp.codeAnalysis.clangTidy.codeAction.showDisable": false,
"C_Cpp.codeAnalysis.clangTidy.codeAction.showDocumentation": false,
2023-05-29 19:29:43 +08:00
"C_Cpp.codeAnalysis.clangTidy.codeAction.showClear": "None",
2024-12-12 01:35:00 +08:00
"editor.lightbulb.enabled": "off",
2023-06-19 13:37:46 +08:00
"terminal.integrated.gpuAcceleration": "on",
"terminal.integrated.shellIntegration.suggestEnabled": true,
"git.showCommitInput": false,
2023-07-26 14:11:21 +08:00
"C_Cpp.loggingLevel": "None",
"C_Cpp.default.enableConfigurationSquiggles": false,
2023-09-05 11:36:46 +08:00
"files.autoGuessEncoding": true,
2024-01-13 17:14:23 +08:00
"workbench.layoutControl.enabled": false,
"window.commandCenter": false,
"workbench.editor.enablePreview": false,
"diffEditor.useInlineViewWhenSpaceIsLimited": false,
2024-04-19 14:41:27 +08:00
"editor.hover.sticky": false,
"editor.hover.enabled": false,
"editor.hover.above": false,
"diffEditor.renderMarginRevertIcon": false,
"diffEditor.renderGutterMenu": false,
2025-04-10 11:42:57 +08:00
"cmake.pinnedCommands": [
"workbench.action.tasks.configureTaskRunner",
"workbench.action.tasks.runTask"
],
2025-09-10 20:21:14 +08:00
"diffEditor.ignoreTrimWhitespace": false,
2025-04-10 11:42:57 +08:00
"editor.stickyScroll.enabled": false,
"continue.showInlineTip": false,
"explorer.confirmDragAndDrop": false,
"update.mode": "none",
"debugpy.debugJustMyCode": false,
"debug.inlineValues": "off",
"hediet.vscode-drawio.resizeImages": null,
"continue.enableTabAutocomplete": false,
"makefile.configureOnOpen": true,
"editor.accessibilitySupport": "off",
"extensions.autoCheckUpdates": false,
"extensions.autoUpdate": false,
2025-09-10 20:21:14 +08:00
"editor.minimap.renderCharacters": false,
"editor.minimap.showSlider": "always",
"C_Cpp.clang_format_style": "{BasedOnStyle: google, ColumnLimit: 120}",
"C_Cpp.clang_format_fallbackStyle": "{BasedOnStyle: google, ColumnLimit: 120}",
2025-09-12 11:17:32 +08:00
"C_Cpp.formatting": "clangFormat",
"C_Cpp.clang_format_path": "/usr/bin/clang-format"
// "editor.defaultFormatter": "xaver.clang-format",
// "clang-format.style": "{BasedOnStyle: google, ColumnLimit: 120}",
"workbench.statusBar.visible": false,
// "[python]": {
// "editor.defaultFormatter": "ms-python.black-formatter"
// },
// "black-formatter.args": [
// "--line-length=120",
// ],
2021-12-09 18:49:48 +08:00
}