VS Code: Change letter spacing
How can I change the horizontal spacing between letters in VS Code?
I would like to reduce it a bit, in other words, I want to change this:
:
+3
Jo liss
source
to share
1 answer
As of VS Code 1.13 , there is a parameter "editor.letterSpacing"
.
For example, I use the following code in my settings to tighten the letter spacing a little:
{
"editor.letterSpacing": -0.15
}
+4
Jo liss
source
to share