vscodesetting/settings.json

137 lines
4.8 KiB
JSON
Raw Normal View History

2019-04-06 22:52:21 +08:00
{
"editor.tabSize": 2,
"[cpp]": {},
2019-04-08 17:49:13 +08:00
"editor.rulers": [
80
],
"workbench.startupEditor": "newUntitledFile",
2019-04-09 19:47:10 +08:00
"workbench.colorCustomizations": {
2021-12-09 19:02:48 +08:00
"editor.selectionBackground": "#fd9090",
"editor.selectionHighlightBackground": "#fdbed8",
2020-11-13 17:49:54 +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",
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",
2021-12-09 19:02:48 +08:00
"editor.findMatchHighlightBackground": "#e8ec69",
"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",
2019-05-05 10:21:33 +08:00
},
2021-12-10 17:11:49 +08:00
// "C_Cpp.autocomplete": "Disabled",
// "C_Cpp.formatting": "Disabled",
2022-02-08 11:41:11 +08:00
"C_Cpp.errorSquiggles": "Disabled",
2021-12-10 17:11:49 +08:00
"C_Cpp.intelliSenseEngine": "Default",
2021-12-09 18:49:48 +08:00
"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",
2020-10-10 19:21:09 +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": {
"comments":"#7c7c7c",
"keywords": "#808000",
"variables": "#000000",
"strings": "#008080",
"functions": "#800000",
"numbers": "#008000",
"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,
"editor.minimap.showSlider": "always",
"editor.minimap.renderCharacters": false,
2020-11-13 17:49:54 +08:00
"window.zoomLevel": 1.5,
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,
2021-12-09 18:49:48 +08:00
"explorer.openEditors.visible": 0,
2020-09-29 16:07:53 +08:00
"breadcrumbs.enabled": true,
2020-11-13 17:49:54 +08:00
"terminal.integrated.fontSize": 13,
2019-12-06 12:05:21 +08:00
"window.menuBarVisibility": "compact",
"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
"python.showStartPage": false,
"workbench.colorTheme": "Default Light+",
"rust.show_warnings": false,
2020-12-01 16:31:28 +08:00
"git.detectSubmodules": false,
2021-12-09 18:49:48 +08:00
"python.languageServer": "Pylance",
2021-01-11 11:06:16 +08:00
"editor.fontFamily": "menlo,sarasa-fixed-sc-regular,NotoSansMonoCJKsc-Regular",
2021-12-09 18:49:48 +08:00
"rst.preview.pythonPath": "",
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
"[python]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"editor.suggestSelection": "first",
2021-04-08 11:09:29 +08:00
"workbench.editor.decorations.badges": false,
2021-12-09 18:49:48 +08:00
"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"
},
2021-10-03 13:56:20 +08:00
"scm.countBadge": "off",
2021-12-09 19:02:48 +08:00
"workbench.statusBar.visible": false,
2021-12-16 15:52:49 +08:00
"workbench.activityBar.visible": false,
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,
2022-02-14 20:04:29 +08:00
"systemverilog.formatCommand": "verible-verilog-format --column_limit 80",
2022-02-24 11:06:15 +08:00
"diffEditor.maxComputationTime": 0,
"diffEditor.ignoreTrimWhitespace": false,
2021-12-09 18:49:48 +08:00
}