Dave Remy
Dave Remy

Reputation: 101

Change cursor in VSCodeVim during insert or command mode?

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)?

Upvotes: 10

Views: 3725

Answers (1)

lightyagami1
lightyagami1

Reputation: 145

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.

Upvotes: 11

Related Questions