How to disable or hide scrollbar/minimap?

Remove Minimap Add the following to your settings.json file “editor.minimap.enabled”: false Note that, as pointed out in another answer, this process has now been simplified to: View->Show Minimap Remove the Overview Ruler Add the following to your settings.json file “editor.hideCursorInOverviewRuler”: true This will keep the scrollbar, but will result in it only appearing when the … Read more

How can I enable the VS Code Color Picker outside of CSS-like scopes? [duplicate]

Looks like this is not possible at the moment (2018-09-29). It only works with language servers in VS Code what can provide the colors used in the currently opened file. Here’s an open issue on their GitHub with request for exactly this feature: https://github.com/Microsoft/vscode/issues/52364 Please upvote this request there.