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:
Lucien Cartier-Tilet 2023-12-17 21:40:20 +01:00
parent 3354f79554
commit c7e996516b
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
2 changed files with 11 additions and 6 deletions

View File

@ -1302,6 +1302,7 @@ tables, source blocks, and tags, and it applies settings similar to
:straight (:build t)
:after org
:defer t
:custom (org-modern-table nil)
:hook (org-mode . org-modern-mode)
:hook (org-agenda-finalize . org-modern-agenda))
#+end_src

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