Lighttable, set font size

前端 未结 4 475
后悔当初
后悔当初 2021-02-05 11:51

i am new on Lighttable IDE.
anyone know how to set workspace and windows font size.
i can change editor font size. but dont know how to set font-size<

4条回答
  •  旧时难觅i
    2021-02-05 12:46

    Open commands pane (^Space), search for "User behaviour". This will open config file. Add the following into the middle (LightTable 0.7+):

    [:editor :lt.objs.style/font-settings "Menlo" 13 2]
    

    On older LightTable versions add this instead:

    :editor [:lt.objs.editor/no-wrap
                  (:lt.objs.style/font-settings "Menlo" 13 2) ;; font-family: Menlo, font-size: 13px, line-height: 2em
                  (:lt.objs.style/set-theme "default")]
    

提交回复
热议问题