Cursor 自用习惯快速调整基础布局与配置

824 阅读1分钟
  • # Cursor 解决锁区问题(详细步骤)

  • 插件同步 vscode, 所有有什么新插件可以装到 vscode 上,然后使用 vscode 同步保存到远程,这样以后换设备同步回来插件,在同步给 cursor 或者 trae 都很方便。

  • windows 工具内唤起终端默认是 git bash 而不是 powershell

    "terminal.integrated.profiles.windows": {
      "Git Bash": {
          # "path": "C:\\Program Files\\Git\\bin\\bash.exe",
          "path": "D:\\Git\\bin\\bash.exe",
          "args": []
      }
    },
    "terminal.integrated.defaultProfile.windows": "Git Bash",
    
  • 菜单栏跟 vscode 一样居左,也在 setting.json 里面配置:

    "workbench.activityBar.orientation": "vertical",
    

    image.png

  • 通过设置搜索 auto save,修改为失去焦点保存:

    image.png

  • 通过设置搜索 tab size 数字,推荐 2,默认 4

  • 通过设置搜索 enableStickyScroll 取消勾选,则关闭滚动粘滞

    image.png

  • 通过设置搜素 compact folders 取消勾选,文件不会折叠显示

    image.png

    取消后:

    image.png

  • 主题选择:

    image.png

    image.png