Disable electric-indent

This commit is contained in:
Andreas Zweili 2022-05-20 11:58:47 +02:00
parent 5311d6bf21
commit 77f7907e5e
1 changed files with 8 additions and 0 deletions

View File

@ -1353,6 +1353,7 @@ After a fresh installation you have to first sync your emails with ~offlineimap
"My settings for message composition."
(setq mu4e-compose-format-flowed t)
(use-hard-newlines -1)
(electric-indent-local-mode -1)
(turn-off-auto-fill)
(flyspell-mode)))))
#+END_SRC
@ -2929,6 +2930,13 @@ https://github.com/jhallen/joes-sandbox/issues/29
(xterm-mouse-mode 1)
#+end_src
** Disable electric-indent-local-mode
This mode indents all the text I write in text-mode.
Not really useful in my usecase.
(add-hook 'text-mode-hook (lambda () (electric-indent-local-mode -1)))
* Eshell
** General