-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault_settings.json
More file actions
89 lines (86 loc) · 2.57 KB
/
default_settings.json
File metadata and controls
89 lines (86 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"workbench.startupEditor": "none",
// 主题及图标
// "workbench.colorTheme": "Catppuccin Macchiato",
// "workbench.iconTheme": "catppuccin-perfect-macchiato",
// "catppuccin.accentColor": "green",
// "workbench.colorTheme": "Gruvbox Dark Hard",
// "workbench.iconTheme": "lucodear-icons",
// "lucodear-icons.hidesExplorerArrows": true,
// 窗口样式
"window.menuBarVisibility": "toggle",
"window.titleBarStyle": "custom",
"window.zoomLevel": 1.5,
// vim
"vim.easymotion": true,
"vim.highlightedyank.enable": true,
"vim.showMarksInGutter": true,
"vim.smartRelativeLine": true,
// 字体
"editor.fontFamily": "'MesloLGS NF','Meslo LG S', 'JetBrains Mono', 'Fira Code', 'Cascadia Mono PL', 'Droid Sans Mono', 'monospace'",
"editor.fontSize": 20,
"editor.fontWeight": "350",
"debug.console.fontSize": 18,
"terminal.integrated.fontFamily": "'CaskaydiaCove Nerd Font Mono','Cascadia Mono PL'",
"terminal.integrated.fontSize": 18,
// minimap
"editor.minimap.maxColumn": 80,
"editor.minimap.autohide": "mouseover",
// 补全设置
"editor.quickSuggestions": {
"other": true,
"comments": false,
"strings": false
},
// 光标设置
"editor.cursorWidth": 3,
"editor.cursorBlinking": "smooth",
"editor.renderLineHighlight": "all",
// 文件列表smooth滚动
"workbench.list.smoothScrolling": true,
// sticky scroll 功能开启
"editor.stickyScroll.enabled": true,
// debug
"debug.showBreakpointsInOverviewRuler": true,
// Error Lens 设置
"errorLens.delay": 3,
"workbench.colorCustomizations": {
// errorLens 插件颜色配置
// 警告前景色
"errorLens.warningForeground": "#7b849a"
},
// 将哪些配置应用到所有Profile中
"workbench.settings.applyToAllProfiles": [
"editor.minimap.maxColumn",
"editor.minimap.autohide",
"editor.quickSuggestions",
"editor.cursorWidth",
"editor.cursorBlinking",
"editor.renderLineHighlight",
"window.menuBarVisibility",
"window.titleBarStyle",
"workbench.list.smoothScrolling",
"debug.showBreakpointsInOverviewRuler",
"vim.easymotion",
"vim.highlightedyank.enable",
"vim.showMarksInGutter",
"vim.smartRelativeLine",
"errorLens.delay"
],
// "workbench.experimental.enableNewProfilesUI": true,
// Code Spell Checker 插件设置
"cSpell.diagnosticLevel": "Hint",
"cSpell.ignorePaths": [
"package-lock.json",
"node_modules",
"vscode-extension",
".git/objects",
".vscode",
".vscode-insiders",
"**/settings.json"
],
"settingsSync.ignoredSettings": [],
"workbench.settings.showAISearchToggle": false,
"chat.todoListTool.descriptionField": false,
"chat.disableAIFeatures": true
}