How can I hide the following lines to get a cleaner code view?
Like this in the official documentation:
How can I do that or find settings in t
Go to
Menu File → Preferences → Settings
And search for "editor.folding"
. Set it to
"editor.folding": false
This will disable the lines and the folding function.
Since you want to disable the render indent guides,
From the documentation
"editor.renderIndentGuides": false,
This will disable the indent guides.