atom tips

设置atom的字体

settings -> open config folder 里面修改 styles.less

1
2
3
4
5
6
7
8
9
10
11
// 修改editor的字体
atom-text-editor {
// color: white;
// background-color: hsl(180, 24%, 12%);
font-family: YaHei Consolas Hybrid;
}

// 修改tab,treeview,tab bar的字体
html, body, .tree-view, .tab-bar .tab {
font-size: YaHei Consolas Hybrid;
}