From 56693defa3f87bbf97bf6f2f1c221cbcece2bc8a Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Mon, 8 Nov 2021 19:15:12 +0100 Subject: [PATCH] Temporarily disable moody modeline Apparently, this causes a considerable lag when drawing buffers (determined by experimentation). It's not clear to me whether really moody is the cause of this issue here, or some subtle side effect. --- init.el | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index 913446b..e8c1335 100644 --- a/init.el +++ b/init.el @@ -133,9 +133,12 @@ (with-demoted-errors "Cannot load `pdf-tools’: %s" (pdf-tools-install))) - (with-demoted-errors "Cannot activate moody: %s" - (moody-replace-mode-line-buffer-identification) - (moody-replace-vc-mode)) + ;; This causes inacceptable lack when drawing buffers, so disable it for now. + ;; Needs to be investigated further. + + ;; (with-demoted-errors "Cannot activate moody: %s" + ;; (moody-replace-mode-line-buffer-identification) + ;; (moody-replace-vc-mode)) (with-demoted-errors "Cannot activate `vlf': %s" (require 'vlf-setup))