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))