From 126f265281527beb2677b59078dd2c348cb78873 Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Fri, 26 Mar 2021 13:50:25 +0100 Subject: [PATCH] [Emacs] Remove indent-guide-mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It slows Emacs too much and isn’t all that useful actually --- org/config/emacs.org | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/org/config/emacs.org b/org/config/emacs.org index 7e54502..f280a18 100644 --- a/org/config/emacs.org +++ b/org/config/emacs.org @@ -4837,12 +4837,11 @@ updated with it. Now, let’s indicate LSP that I want to use that instead of Finally, I wish to enable ~electric-pair-mode~ and ~indent-guide-mode~ for Rust files, so let’s enable that through the use of a hook: -#+BEGIN_SRC emacs-lisp +#+BEGIN_SRC emacs-lisp :tangle no (add-hook 'rust-mode-hook '(lambda () (local-set-key (kbd "TAB") #'company-indent-or-complete-common) - (electric-pair-mode 1) - (indent-guide-mode 1))) + (electric-pair-mode 1))) #+END_SRC *** Scheme