From 37a8330bc6893be22344d4adcbb63723b9b98bf8 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Sun, 16 Aug 2020 21:35:34 +1000 Subject: [PATCH] Disable pretty-code-mode, because I only want ligatures really --- config/doom/config.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/config/doom/config.el b/config/doom/config.el index c1bd9d0..a506070 100644 --- a/config/doom/config.el +++ b/config/doom/config.el @@ -58,3 +58,10 @@ ;; ;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how ;; they are implemented. + +;; We need to turn on the pretty-code Doom module to get ligatures working. +;; Unfortunately, that also turns on pretty-code-mode, which I don't want - it's +;; a feature that replaces keywords with symbols à la Vim-conceal, which I find +;; needlessly confusing. Luckily we can shut off just pretty-code-mode by +;; setting this variable. +(setq +pretty-code-enabled-modes nil)