diff options
Diffstat (limited to 'ted.cfg')
-rw-r--r-- | ted.cfg | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -14,8 +14,17 @@ scrolloff = 5 # if you do a bunch of typing, then undo, it will generally # undo the past this many seconds of editing. undo-save-time = 6 -font = assets/font.ttf -font-bold = assets/font-bold.ttf +# comma-separated list of TTF files to use for text. +# a character is rendered using the first font in this list which supports it. +font = ` + assets/font.ttf, + assets/font-emoji.ttf, +` +# same as font but for bold text +font-bold = ` + assets/font-bold.ttf, + assets/font-emoji.ttf, +` text-size = 18 border-thickness = 1 max-menu-width = 600 |