Sublime Forum

Increase font size / change font of the FOLDERS listing

#1

It is trivial to increase the font size of the main text in ST3, but I can’t find a way to increase the font size of the “Folders” file listing on the left hand side. Is there a hidden config somewhere I can fiddle with? Maybe I need to modify the theme I’m using? (Solarized Dark Flat, if it matters)

0 Likes

#2

You are right. GUI related font settings are defined by themes.

You might want to install PackageDev and use its “Edit Current Theme” function to simply create an overriding theme file in your user directory.

In the right panel insert:

{
    "variables": {
    },
    "rules": [
        {
            "class": "sidebar_label",
            // "font.face": "system",
            "font.size": 12
        },
    ]
}
0 Likes