From e53e8fde64bf258f33c273871b9c1740ef125c91 Mon Sep 17 00:00:00 2001 From: "Liv (pelsh) Hugger" Date: Thu, 26 Dec 2024 22:18:35 +0100 Subject: [PATCH] use custom modeline with doom --- dot_config/doom/config.el | 12 +++++++++--- dot_config/doom/init.el | 2 +- dot_config/doom/packages.el | 3 +++ 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/dot_config/doom/config.el b/dot_config/doom/config.el index 7a535f8..a33fcce 100644 --- a/dot_config/doom/config.el +++ b/dot_config/doom/config.el @@ -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. ;; diff --git a/dot_config/doom/init.el b/dot_config/doom/init.el index 61f91d3..fc8ceb1 100644 --- a/dot_config/doom/init.el +++ b/dot_config/doom/init.el @@ -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 diff --git a/dot_config/doom/packages.el b/dot_config/doom/packages.el index d2f38d6..acc2f93 100644 --- a/dot_config/doom/packages.el +++ b/dot_config/doom/packages.el @@ -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)