From 8a2a849cc8a2977fc8449d39069a0ad849a7a467 Mon Sep 17 00:00:00 2001 From: Collin Dickert Date: Thu, 4 Jan 2024 21:15:12 -0500 Subject: [PATCH] add CodeNewRoman Nerd Font to quirks --- src/quirks.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/quirks.zig b/src/quirks.zig index a43001e5a..e521eeb56 100644 --- a/src/quirks.zig +++ b/src/quirks.zig @@ -23,6 +23,7 @@ pub fn disableDefaultFontFeatures(face: *const font.Face) bool { // looks really bad in terminal grids, so we want to disable ligatures // by default for these faces. return std.mem.eql(u8, name, "CodeNewRoman") or + std.mem.eql(u8, name, "CodeNewRoman Nerd Font") or std.mem.eql(u8, name, "Menlo") or std.mem.eql(u8, name, "Monaco"); }