0%

VsCode经常需要改的几个设置

最近搞了好几版VsCode,有几个设置一直忘记,在这里记录一下。

1
2
3
4
5
6
7
8
9
"explorer.autoReveal": "focusNoScroll"
"explorer.compactFolders": false
"workbench.tree.enableStickyScroll": true
"workbench.editor.wrapTabs": true
"editor.mouseWheelZoom": true
"editor.cursorBlinking": "smooth"
"terminal.integrated.smoothScrolling": true
"workbench.list.smoothScrolling": true
"editor.formatOnPaste": true

2026-02-03 更新:

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
"editor.fontSize": 18,
"editor.inlineSuggest.enabled": true,
"git.ignoreLegacyWarning": true,
"workbench.startupEditor": "none",
"files.autoSave": "afterDelay",
"explorer.autoReveal": false,
"terminal.integrated.enableMultiLinePasteWarning": false,
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"[python]": {
"editor.formatOnType": true
},
"git.enableSmartCommit": true,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.fontWeightBold": "bold",
"files.exclude": {
"**/.git": false,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/.gitignore": false
},
"terminal.integrated.fontSize": 16,
"security.workspace.trust.untrustedFiles": "open",
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.fontFamily": "Cascadia Mono",
"editor.fontFamily": "'Cascadia Mono', 'LXGW Wenkai Mono GB', Consolas, 'Courier New', monospace",
"editor.fontLigatures": false,
"explorer.confirmDragAndDrop": false,
"editor.language.brackets": [],
"extensions.autoUpdate": false,
"workbench.editorLargeFileConfirmation": 30,
"explorer.compactFolders": false,
"workbench.settings.applyToAllProfiles": [
"files.autoSave"
],
"editor.mouseWheelZoom": true,
"notebook.markup.fontSize": 16,
"notebook.output.fontSize": 16,
"settingsSync.ignoredExtensions": [],
"settingsSync.ignoredSettings": [],
"window.customTitleBarVisibility": "auto",
"gitlens.defaultDateLocale": "",
"explorer.confirmDelete": false,
"window.titleBarStyle": "custom",
"cursor.composer.textSizeScale": 1.3,
"terminal.integrated.env.linux": {

},
"terminal.integrated.inheritEnv": false,
"http.proxy": "http://127.0.0.1:7890",
"cursor.general.disableHttp2": true,
"markdown-preview-enhanced.previewTheme": "atom-dark.css",
"markdown-preview-enhanced.enablePreviewZenMode": false,
"explorer.confirmPasteNative": false,
"markdown-preview-enhanced.codeBlockTheme": "auto.css",
"markdown-preview-enhanced.imageFolderPath": "/content/assets",
"window.commandCenter": true,
"remote.SSH.defaultExtensions": [
"ms-python.python",
"ms-toolsai.jupyter-renderers",
"ms-toolsai.jupyter-keymap",
"ms-toolsai.jupyter"
],
"editor.minimap.enabled": true,
"cursor.terminal.usePreviewBox": true,
"explorer.incrementalNaming": "smart",
"terminal.integrated.mouseWheelZoom": true,
"window.zoomLevel": -1,
"workbench.iconTheme": "catppuccin-mocha",
"workbench.colorTheme": "Catppuccin Mocha",
"workbench.list.smoothScrolling": true,
"editor.smoothScrolling": true,
"editor.guides.bracketPairs": true,
"terminal.integrated.scrollback": 10000,
"terminal.integrated.lineHeight": 1.2,
"window.dialogStyle": "custom",
"editor.wordWrap": "on",
"editor.lineHeight": 1.2,
"python.analysis.completeFunctionParens": true,
"python.analysis.autoImportCompletions": true,
"python.analysis.inlayHints.functionReturnTypes": true,
"python.analysis.inlayHints.variableTypes": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorStyleInactive": "line",
"workbench.editor.wrapTabs": true,
"editor.cursorBlinking": "smooth",