Sublime Text is remarkable about configuring nearly everything!
My eyes have trouble reading the status bar at the bottom. Is there any way to enlarge (taller) or bigger font?
Sublime Text is remarkable about configuring nearly everything!
My eyes have trouble reading the status bar at the bottom. Is there any way to enlarge (taller) or bigger font?
Yes it can.
The easiest way to tweak font size is to just increase font_size_sm
value. It may effect more elements than just the statusbar however.
// Documentation at https://www.sublimetext.com/docs/themes.html
{
"variables":
{
"font_size_sm": 12,
},
"rules":
[
]
}
To directly address statusbar text you could tweak the related label’s rule
// Documentation at https://www.sublimetext.com/docs/themes.html
{
"variables":
{
},
"rules":
[
{
"class": "label_control",
"parents": [{"class": "status_bar"}],
"font.size": 12,
},
]
}
@bschaaf I can’t seem to find where ui_scale is located. Would you be so kind as to point me in the right direction?
Thank you!
It’s one of ST’s normal settings
"ui_scale": 2.0,
into the right view to scale UI by 2.