DEV Community

Discussion on: Enable smooth typing and cursor animation in VSCode

Collapse
 
puka_tchou profile image
Puka Tchou

Nice one, it made me tweak my own cursor settings and I ended up with :

"editor.cursorSurroundingLines": 15,
"editor.cursorStyle": "underline",
"editor.cursorSmoothCaretAnimation": true,
"editor.cursorBlinking": "phase"
Enter fullscreen mode Exit fullscreen mode
Collapse
 
andrie profile image
Andrie

I used the same settings, I just changed the cursor style to "block" instead of "underline".

Collapse
 
trishiraj profile image
Trishiraj

Good one!

Collapse
 
thomasbnt profile image
Thomas Bnt ☕

Thanks !