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.
;;

View file

@ -38,7 +38,7 @@
indent-guides ; highlighted indent columns
;;ligatures ; ligatures and symbols to make your code pretty again
;;minimap ; show a map of the code on the side
(modeline +light) ; snazzy, Atom-inspired modeline, plus API
;;(modeline +light) ; snazzy, Atom-inspired modeline, plus API
nav-flash ; blink cursor line after big motions
;;neotree ; a project drawer, like NERDTree for vim
ophints ; highlight the region an operation acts on

View file

@ -11,6 +11,9 @@
;; Chezmoi integration
(package! chezmoi)
;; Custom modeline
(package! mood-line)
;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror:
;; (package! some-package)