Reputation: 1288
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
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"
}
Upvotes: 2