use custom modeline with doom

This commit is contained in:
insects 2024-12-26 22:18:35 +01:00
parent 32a4d9b23c
commit e53e8fde64
3 changed files with 13 additions and 4 deletions

View file

@ -6,9 +6,9 @@
;; Set fonts and window sizes
(add-to-list 'default-frame-alist '(fullscreen . maximized))
(if (string= (system-name) "enoko")
(setq doom-font (font-spec :family "Recursive Mono Casual Static" :size 25 :weight 'semi-light))
(setq doom-font (font-spec :family "Recursive Mono Casual Static" :size 17 :weight 'semi-light)))
(if (string-prefix-p "enoko" (system-name))
(setq doom-font (font-spec :family "RecMonoCasual Nerd Font" :size 27 :weight 'semi-light))
(setq doom-font (font-spec :family "RecMonoCasual Nerd Font" :size 17 :weight 'semi-light)))
;; Load our cute color scheme
(setq catppuccin-flavor 'mocha)
@ -28,6 +28,12 @@
(map! :leader :desc "Find in Chezmoi dotfiles" :n "f ." #'chezmoi-find)
(map! :leader :desc "Save a Chezmoi dotfile" :n "f ," #'chezmoi-write)
(use-package! mood-line
:config
(mood-line-mode)
:custom
(mood-line-gylph-alist mood-line-glyphs-fira-code))
;; Whenever you reconfigure a package, make sure to wrap your config in an
;; `after!' block, otherwise Doom's defaults may override your settings. E.g.
;;