From b8b8f2ba17ee300e4c9633f615de08e6961b9bf6 Mon Sep 17 00:00:00 2001 From: Daniil Tsivinsky Date: Sat, 9 Mar 2024 13:29:31 +0300 Subject: [PATCH] wezterm: disable ligatures --- config/.wezterm.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/.wezterm.lua b/config/.wezterm.lua index 067e29a..c58499d 100644 --- a/config/.wezterm.lua +++ b/config/.wezterm.lua @@ -18,4 +18,6 @@ config.font = wezterm.font("JetBrains Mono", { weight = "Medium", }) +config.harfbuzz_features = { "calt=0", "clig=0", "liga=0" } + return config