Rewrote indentation detection

More robust and easier to customize.
This commit is contained in:
Henrik Lissner 2018-07-29 02:54:19 +02:00
parent 088480047c
commit 35e5a47e9f
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
5 changed files with 31 additions and 17 deletions

View file

@ -71,6 +71,8 @@ You should use `det-eshell-alias!' to change this.")
eshell-glob-case-insensitive t
eshell-error-if-no-glob t)
(add-to-list 'doom-detect-indentation-excluded-modes 'eshell-mode nil #'eq)
;; Consider eshell buffers real
(add-hook 'eshell-mode-hook #'doom|mark-buffer-as-real)

View file

@ -8,4 +8,5 @@
(after! term
(set-env! "SHELL")
(add-hook 'term-mode-hook #'doom|mark-buffer-as-real))
(add-hook 'term-mode-hook #'doom|mark-buffer-as-real)
(add-to-list 'doom-detect-indentation-excluded-modes 'term-mode nil #'eq))