docs(emacs/visual): better visual config

Deactivate org tables in org-modern-mode

Only show true filenames in modeline when opening files, better path
in modeline
This commit is contained in:
2023-12-17 21:40:20 +01:00
parent 3354f79554
commit c7e996516b
2 changed files with 11 additions and 6 deletions

View File

@@ -162,13 +162,17 @@ The DoomEmacs modeline looks nice in my opinion, lets use it.
(use-package doom-modeline
:straight (:build t)
:defer t
:init (doom-modeline-mode 1)
:init
(doom-modeline-mode 1)
(setq find-file-visit-truename t)
:custom
(doom-modeline-height 15)
(doom-modeline-enable-word-count t)
(doom-modeline-continuous-word-count-modes '(markdown-mode gfm-mode org-mode))
(doom-modeline-mu4e t)
(doom-modeline-env-version t)
(doom-modeline-buffer-file-name-style 'truncate-upto-project)
:config
(csetq doom-modeline-height 15
doom-modeline-enable-word-count t
doom-modeline-continuous-word-count-modes '(markdown-mode gfm-mode org-mode)
doom-modeline-mu4e t
doom-modeline-env-version t)
(mu4e-alert-enable-mode-line-display))
#+end_src