Skip to content

Vscode

自身

1. 设置资源管理器字体大小

  1. 进入文件夹,选择文件workbench.desktop.main.css

    警告

    如果你 vscode 或者 idea 开启了保存自动格式化,请不要使用这类文件打开,推荐使用记事本(win)/文本编辑器(mac)打开

    bash
    open /Applications/Visual\ Studio\ Code.app/Contents/Resources/app/out/vs/workbench
    bash
    # 在运行(win+R)中执行代码
    %localappdata%\Programs\Microsoft VS Code\resources\app\out\vs\workbench
  2. 搜索内容:.monaco-workbench .part>.content

  3. 修改字号:font-size:16px

  4. 保存重启

2. 设置字体样式

  1. 搜索内容: .monaco-icon-name-container>.label-name

  2. 设置样式: font-family:FiraCode Nerd Font Mono,雅痞-简

  3. 保存重启

3. 设置资源管理器快捷键

  1. 打开键盘快捷键设置 command + k + s(win 请自行测试)

  2. 点击右上角的按钮转到 json 配置文件

  3. 在尾部追加以下内容

    json
      {
        "key": "cmd+enter",
        "command": "explorer.newFolder",
        "when": "explorerResourceIsFolder && filesExplorerFocus && !inputFocus"
      },
      {
        "key": "cmd+n",
        "command": "explorer.newFile",
        "when": "explorerResourceIsFolder && filesExplorerFocus && !inputFocus"
      }

以上步骤,实现了在资源管理器文件夹获取到焦点的时候,使用command+enter来新建文件夹,使用command+n来新建文件的功能.

插件

1. gitlens

  1. 关闭 gitlens 的悬停展示

    javascript
    "gitlens.hovers.enabled": false,
    "gitlens.hovers.avatars": false,
  2. 设置 gitlens 时间格式化

    javascript
    "gitlens.defaultDateStyle": "absolute",
    "gitlens.currentLine.dateFormat": "YYYY年MM月D日, HH:mm:ss",

2. prettier

设置一个全局的 prettier 配置文件,在项目中使用的时候,会自动读取这个配置文件,这样就不用每个项目都配置一遍了.

json
{
  "$schema": "https://json.schemastore.org/prettierrc",
  "printWidth": 120,
  "tabWidth": 2,
  "useTabs": false,
  "semi": false,
  "singleQuote": true,
  "quoteProps": "as-needed",
  "bracketSpacing": true,
  "arrowParens": "avoid",
  "htmlWhitespaceSensitivity": "ignore",
  "bracketSameLine": true
}