9

Using the most excellent VSCodeVim plugin. Is it possible to have the cursor change when in normal/command mode (block perhaps) versus input mode (vertical or underline perhaps)?

sudo bangbang
  • 27,127
  • 11
  • 75
  • 77
Dave Remy
  • 91
  • 2

1 Answers1

7

You can add these in your setting.json or search for these terms in case of using GUI setting

"vim.cursorStylePerMode.insert": "line-thin",
"vim.cursorStylePerMode.normal": "block",

This will turn cursor to thin line in insert mode and block in normal mode, which will distinguish both easily.

lightyagami1
  • 105
  • 3
  • 7