前言

老电脑服役 7 年终于退休,新电脑配置已经确定,作为重度电脑使用者,梳理下常用的系统配置+常用软件备份,方便己用。

系统配置

操作系统:Windows11

桌面设置

  • 系统名称:设置-主页更改电脑名称

  • 个性化:主题颜色+壁纸+mac 鼠标样式

  • 任务栏:关闭/隐藏任务项、托盘图标关闭、其他系统托盘图标打开、任务栏行为全部关闭、从不合并

  • 更新:Windows 系统更新至最新,打开更新提醒

  • 文件夹选项:打开资源管理器时打开此电脑、文件夹视图、显示隐藏文件、显示文件后缀

系统设置

  • 开机启动
  • 磁盘清理

软件列表

系统工具

  • Clash\UU 加速器
  • Chrome\Edge
  • MacType
  • Logitech Options
  • GeekUninstaller
  • 思源黑体、思源宋体、思源编程

生产力工具

  • Office:Office 365 家庭版 + Visio LTSC 专业版 2021
  • Axure RP9
  • Xmind
  • Typora
  • Vscode
  • GIt\Node.js\Hexo

生活软件

  • 微信\QQ\钉钉\腾讯会议:聊天软件
  • Spotify\QQ 音乐:听歌软件
  • 115 网盘\百度网盘:网盘软件
  • Eagle:图片软件
  • NeatReader:读书软件
  • PotPlayer:视频软件
  • High-Logic FontCreator 13:字体软件
  • Internet Download Manager:下载软件
  • Battle\Steam\完美世界对战平台\5E 对战平台:游戏平台

Cursor Setting

settings.json
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
{
// ===== 编辑器核心设置 =====
"editor.fontFamily": "'Sarasa Mono SC', 'Sarasa Term SC', monospace",
"editor.fontSize": 14,
"editor.fontWeight": "normal",
"editor.lineHeight": 22,
"editor.letterSpacing": 0,

// ===== 性能优化(禁用耗性能的功能)=====
"editor.minimap.enabled": false,
"editor.cursorBlinking": "solid",
"editor.smoothScrolling": false,
"editor.stickyScroll.enabled": false,
"editor.formatOnPaste": false,

// ===== 保留的实用功能 =====
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.bracketPairColorization.enabled": true,
"editor.linkedEditing": true,
"editor.inlineSuggest.enabled": true,

// ===== 文件管理 =====
"files.autoSave": "afterDelay",
"files.autoSaveDelay": 1000,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.exclude": {
"**/.DS_Store": true,
"**/node_modules": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/node_modules/**": true
},

// ===== Workbench 设置 =====
"workbench.startupEditor": "none",
"workbench.editor.enablePreview": false,
"workbench.colorTheme": "GitHub Light",
"workbench.iconTheme": "material-icon-theme",

// ===== 终端设置(macOS 优化)=====
"terminal.integrated.fontFamily": "'Sarasa Mono SC', 'Sarasa Term SC', monospace",
"terminal.integrated.fontSize": 13,
"terminal.integrated.fontWeight": "normal",
"terminal.integrated.lineHeight": 1.2,

// ===== 资源管理器 =====
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,

// ===== Git 设置 =====
"git.autofetch": true,
"git.confirmSync": false,
"git.enableSmartCommit": true,

// ===== 搜索优化 =====
"search.exclude": {
"**/node_modules": true,
"**/dist": true,
"**/.git": true
},
"search.useIgnoreFiles": true,

// ===== 隐私和性能 =====
"telemetry.telemetryLevel": "off",
"editor.accessibilitySupport": "off",

// ===== 语言特定设置 =====
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},

// ===== 代码操作 =====
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},

// ===== Cursor AI 设置 =====
"AI.toolcall.confirmMode": "autoRun"
}

Typora

vue.css
1
2
3
4
5
6
:root {
--side-bar-bg-color: #fff;
--control-text-color: #777;
--font-sans-serif: "Source Sans Pro", "思源黑体", sans-serif !important;
--font-monospace: "Source Code Pro", "Roboto Mono", monospace !important;
}