rinqu-eu
rinqu-eu

Reputation: 43

Can you add a border around your current line in Visual Studio Code

So basically I would like to know if I can make my current line in Visual Studio Code have a border like it does in Visual Studio 2017.

The top image is how it looks like now and the bottom is how I would like it to look

Upvotes: 4

Views: 3986

Answers (1)

Alex
Alex

Reputation: 67513

settings.json Ctrl+,

"workbench.colorCustomizations": {
    "editor.lineHighlightBorder": "#ffffff70"
}

Upvotes: 13

Related Questions