From d4285f76d56a32548b0adcf6163dceadc75e38a1 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Fri, 4 Mar 2022 14:29:17 +0100 Subject: [PATCH] [Emacs] Disable by default valign-mode --- org/config/emacs.org | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/org/config/emacs.org b/org/config/emacs.org index bb277d6..dc82568 100644 --- a/org/config/emacs.org +++ b/org/config/emacs.org @@ -7310,12 +7310,16 @@ linguistics stuff). A solution to this is the package ~valign~. A little caveat though, as its name implies ~valign~ helps with vertical alignment. If some lines are too high, they won’t exactly fit. Unless? Unless ~valign-fancy-bar~ is set to ~t~. + +For now, I disabled the hook with org-mode and markdown-mode because +it slows down opening these files quite a lot. I’ll re-enable the hook +once it is fixed. #+begin_src emacs-lisp (use-package valign :defer t :straight (:build t) :after (org markdown-mode) - :hook ((org-mode markdown-mode) . valign-mode) + ;; :hook ((org-mode markdown-mode) . valign-mode) :custom ((valign-fancy-bar t))) #+end_src