自用开发工具

白也 lol

Java开发系列

存储篇

软件类

IDEA篇

软件下载类

VsCode篇

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
{
//自动保存
"files.autoSave": "afterDelay",
//自动判断打开文件类型
"files.autoGuessEncoding": true,
//提高动画流畅性
"workbench.list.smoothScrolling": true,
"editor.cursorSmoothCaretAnimation": "on",
"editor.smoothScrolling": true,
"editor.cursorBlinking": "smooth",
// 按住滚轮调节字体大小
"editor.mouseWheelZoom": true,
// 指定字体大小
"editor.fontSize": 18,
//格式化文件
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.formatOnSave": true,
//自动折行
"editor.wordWrap": "on",
//高亮括号
"editor.guides.bracketPairs": true,
//代码优化设置
"editor.acceptSuggestionOnEnter": "smart",
"editor.suggestSelection": "first",
//窗口样式
"window.dialogStyle": "custom",
//调试断点
"debug.showBreakpointsInOverviewRuler": true,
//GitHub亮色主题
"workbench.colorTheme": "GitHub Light Default",
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"security.workspace.trust.untrustedFiles": "newWindow",
"git.openRepositoryInParentFolders": "always",
"workbench.startupEditor": "none",
"update.showReleaseNotes": false,
"editor.matchBrackets": "never",
"liveServer.settings.donotShowInfoMsg": true,
"redhat.telemetry.enabled": true,
"vsintellicode.modify.editor.suggestSelection": "choseToUpdateConfiguration",
"security.allowedUNCHosts": [
"wsl.localhost"
],
}
  • 本文标题:自用开发工具
  • 本文作者:白也
  • 创建时间:2023-10-12 12:11:09
  • 本文链接:https://bm4578.github.io/2023/10/12/自用开发工具/
  • 版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!
 评论