Is there a way to place error popups from vscode not upside?

Viewed 24

VS Code error pop up

Is there a way to place this pop up from VS Code, down below the error or change transparency to 0.75?

1 Answers

Add this line to your settings.json:

  "editor.hover.above": false,

enter image description here

Related