Enable doom-modeline

This commit is contained in:
eriedaberrie 2023-04-01 23:23:40 -07:00
parent d04d129a31
commit c794b67272

19
init.el
View file

@ -221,7 +221,7 @@
(use-package ace-window (use-package ace-window
:bind ("C-c w" . ace-window) :bind ("C-c w" . ace-window)
:custom :custom
(aw-keys '(?a ?w ?e ?f ?g ?h ?j ?k ?l ?p)) (aw-keys '(?a ?w ?e ?r ?g ?h ?j ?k ?l ?p))
(aw-dispatch-always t) (aw-dispatch-always t)
(aw-scope 'frame) (aw-scope 'frame)
:config :config
@ -412,11 +412,20 @@
(treemacs-load-theme 'all-the-icons)) (treemacs-load-theme 'all-the-icons))
(use-package doom-modeline (use-package doom-modeline
:disabled t
:demand t :demand t
:custom
(doom-modeline-continuous-word-count-modes '(markdown-mode gfm-mode org-mode))
(doom-modeline-indent-info t)
(doom-modeline-minor-modes t)
(doom-modeline-battery nil)
:config :config
(doom-modeline-mode)) (doom-modeline-mode))
(use-package minions
:demand t
:config
(minions-mode))
(use-package dirvish (use-package dirvish
:demand t :demand t
:after dired :after dired
@ -431,9 +440,6 @@
:config :config
(pdf-tools-install)) (pdf-tools-install))
(use-package wc-mode
:hook text-mode org-mode)
(use-package org (use-package org
:hook :hook
(org-mode . auto-fill-mode) (org-mode . auto-fill-mode)
@ -694,7 +700,8 @@
:custom-face :custom-face
(line-number-current-line ((t (:inherit hl-line)))) (line-number-current-line ((t (:inherit hl-line))))
:custom :custom
(catppuccin-flavor 'mocha)) (catppuccin-flavor 'mocha)
(catppuccin-highlight-matches t))
(defun my-load-theme-with-solaire () (defun my-load-theme-with-solaire ()
(load-theme 'catppuccin t) (load-theme 'catppuccin t)