From 01d599480f6387e638f88ffcb4d2708c0dc929f0 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 12 Dec 2023 16:38:47 +0000 Subject: [PATCH] Remove the weird fl, ft, etc... ligatures --- README.org | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/README.org b/README.org index f5970d6..2ca560d 100644 --- a/README.org +++ b/README.org @@ -295,13 +295,10 @@ Loading this file is handled automatically on my [[https://git.xenia.me.uk/xenia ("~" (rx (or ">" "=" "-" "@" "~>" (+ "~")))) ;; __ ___ ____ _|_ __|____|_ ("_" (rx (+ (or "_" "|")))) + ;; Fira code: 0xFF 0x12 + ("0" (rx (and "x" (+ (in "A-F" "a-f" "0-9"))))) ;; The few not covered by the regexps. "{|" "[|" "]#" "(*" "}#" "$>" "^=")) - (ligature-set-ligatures 'prog-mode - '(;; Fira code: 0xFF 0x12 - ("0" (rx (and "x" (+ (in "A-F" "a-f" "0-9"))))) - ;; Fira code: - "Fl" "Tl" "fi" "fj" "fl" "ft")) ;; Enables ligature checks globally in all buffers. You can also do it ;; per mode with `ligature-mode'. (global-ligature-mode t))