How to disable highline current line and also selected?

Answered

Hello, is there any way how i can disable both of that cases of highlighting? I was not able to see it anywhere in settings.

Thank you.

 

 

0
2 comments

To adjust the colors for currently selected line use editor.currentLine.@focused.fill key:

 "editor.currentLine.@focused.fill": "Blue-100",

for the selected text use editor.selection key for the text-attributes:

"text-attributes": {
    "editor.selection": {
            "bgColor": "Yellow-10",
        "layer": 2000
    },

in color theme json configuration file. See Color Themes.

0

Thank you. It's working like a charm!

 

0

Please sign in to leave a comment.