diff options
author | pommicket <pommicket@gmail.com> | 2023-07-18 17:34:34 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-07-19 19:02:27 -0400 |
commit | ce18be823ee1ab83961587f8110c946ff96183fd (patch) | |
tree | a1ff8cf4e1ebc885333802da2b395ed057aee99b /ted.cfg | |
parent | 6ba52193b95b78c62ea56f54d94a55d0e31504d1 (diff) |
add noto emoji font
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 |