summaryrefslogtreecommitdiff
path: root/ted.cfg
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-07-18 17:34:34 -0400
committerpommicket <pommicket@gmail.com>2023-07-19 19:02:27 -0400
commitce18be823ee1ab83961587f8110c946ff96183fd (patch)
treea1ff8cf4e1ebc885333802da2b395ed057aee99b /ted.cfg
parent6ba52193b95b78c62ea56f54d94a55d0e31504d1 (diff)
add noto emoji font
Diffstat (limited to 'ted.cfg')
-rw-r--r--ted.cfg13
1 files changed, 11 insertions, 2 deletions
diff --git a/ted.cfg b/ted.cfg
index 016cbc6..ae7c370 100644
--- a/ted.cfg
+++ b/ted.cfg
@@ -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