Skif
Skif

Reputation: 1288

VSCode - how can I add highlighting to the line with the cursor?

How can I add highlighting to the line with the cursor?

Like this official tutorial screenshot - link. In my case, it looks like this - link

Upvotes: 1

Views: 129

Answers (1)

Matt Bierner
Matt Bierner

Reputation: 65195

This color is provided by themes using editor.lineHighlightBackground.

You can override this by adding workbench.colorCustomizations in your user settings

"workbench.colorCustomizations": {
    "editor.lineHighlightBackground": "#ff00ff"
}

enter image description here

Upvotes: 2

Related Questions