如何設定「Atom Workspace」的中文字型
選擇功能選單「Edit / Open Your Stylesheet」,
編輯「~/.atom/styles.less」,
加入下面的程式碼,檔案儲存後就會生效了。
@font-family: "Liberation Mono", "Noto Sans CJK TC", monospace;
atom-workspace {
font-family: @font-family;
}
這樣左方的「Tree View」,就可以正常顯示中文。 還有「Settings and Preferences」的畫面,也可以可以正常顯示中文。
以上範例,請參考
- 「Gihub / atom / atom / static / workspace-view.less」
- 「Gihub / atom / atom / static / variables / ui-variables.less」