VS Code - Is there a way to make Minimap bigger?

I enabled MiniMap in Visual Studio Code (VSCODE) with the following code: "editor.minimap.enabled": true

But can I make it bigger? It is so small on the right.

+6
source share
2 answers

there is no zoom level for the minimap. If this is your question.

But I think the following settings are useful as it does it schematically, which looks much better than with true! Maybe it improves it !; -)

"editor.minimap.renderCharacters": false
+5
source

In the settings you can set the width with

// Limit the width of the minimap to render at most a certain number of columns
"editor.minimap.maxColumn": 120
+2
source

Source: https://habr.com/ru/post/1015496/


All Articles