Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 469
rinqu-eu Avatar asked Sep 01 '25 18:09

rinqu-eu


1 Answers

settings.json Ctrl+,

"workbench.colorCustomizations": {
    "editor.lineHighlightBorder": "#ffffff70"
}
like image 73
Alex Avatar answered Sep 05 '25 22:09

Alex