If you’re wondering how to change Atom side bar (tree view) font size then you just need to add this stuff on styles.less
file in ~/.atom/
.
1
2
3
4
5
@font-size: 10px;
.tree-view, .tab-bar .tab
{
font-size: @font-size;
}
Check it out with font-size 10 (side bar) and editor font-size 9.
Now each window can fit on my 15” rMBP. Perfect!
Cheers and happy coding.