VSCode自定义闪烁光标

打开VSCode

组合键ctrl+shift+p搜索"settings.json",打开User Settings

VSCode自定义闪烁光标_第1张图片

 加上这一句

    "editor.cursorStyle": "block",
    "workbench.colorCustomizations": {
        "editorCursor.foreground": "#5c8fb1",
        "terminalCursor.foreground": "#5c8fb1"
      }

效果如下:

VSCode自定义闪烁光标_第2张图片

 

你可能感兴趣的:(VSCode,vscode,ide,编辑器)