[Emacs] Remove indent-guide-mode

It slows Emacs too much and isn’t all that useful actually
This commit is contained in:
Lucien Cartier-Tilet 2021-03-26 13:50:25 +01:00
parent 8995aeb881
commit 126f265281
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 2 additions and 3 deletions

View File

@ -4837,12 +4837,11 @@ updated with it. Now, lets 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 lets 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