use custom modeline with doom
This commit is contained in:
parent
32a4d9b23c
commit
e53e8fde64
3 changed files with 13 additions and 4 deletions
|
@ -6,9 +6,9 @@
|
||||||
;; Set fonts and window sizes
|
;; Set fonts and window sizes
|
||||||
(add-to-list 'default-frame-alist '(fullscreen . maximized))
|
(add-to-list 'default-frame-alist '(fullscreen . maximized))
|
||||||
|
|
||||||
(if (string= (system-name) "enoko")
|
(if (string-prefix-p "enoko" (system-name))
|
||||||
(setq doom-font (font-spec :family "Recursive Mono Casual Static" :size 25 :weight 'semi-light))
|
(setq doom-font (font-spec :family "RecMonoCasual Nerd Font" :size 27 :weight 'semi-light))
|
||||||
(setq doom-font (font-spec :family "Recursive Mono Casual Static" :size 17 :weight 'semi-light)))
|
(setq doom-font (font-spec :family "RecMonoCasual Nerd Font" :size 17 :weight 'semi-light)))
|
||||||
|
|
||||||
;; Load our cute color scheme
|
;; Load our cute color scheme
|
||||||
(setq catppuccin-flavor 'mocha)
|
(setq catppuccin-flavor 'mocha)
|
||||||
|
@ -28,6 +28,12 @@
|
||||||
(map! :leader :desc "Find in Chezmoi dotfiles" :n "f ." #'chezmoi-find)
|
(map! :leader :desc "Find in Chezmoi dotfiles" :n "f ." #'chezmoi-find)
|
||||||
(map! :leader :desc "Save a Chezmoi dotfile" :n "f ," #'chezmoi-write)
|
(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
|
;; 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.
|
;; `after!' block, otherwise Doom's defaults may override your settings. E.g.
|
||||||
;;
|
;;
|
||||||
|
|
|
@ -38,7 +38,7 @@
|
||||||
indent-guides ; highlighted indent columns
|
indent-guides ; highlighted indent columns
|
||||||
;;ligatures ; ligatures and symbols to make your code pretty again
|
;;ligatures ; ligatures and symbols to make your code pretty again
|
||||||
;;minimap ; show a map of the code on the side
|
;;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
|
nav-flash ; blink cursor line after big motions
|
||||||
;;neotree ; a project drawer, like NERDTree for vim
|
;;neotree ; a project drawer, like NERDTree for vim
|
||||||
ophints ; highlight the region an operation acts on
|
ophints ; highlight the region an operation acts on
|
||||||
|
|
|
@ -11,6 +11,9 @@
|
||||||
;; Chezmoi integration
|
;; Chezmoi integration
|
||||||
(package! chezmoi)
|
(package! chezmoi)
|
||||||
|
|
||||||
|
;; Custom modeline
|
||||||
|
(package! mood-line)
|
||||||
|
|
||||||
;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror:
|
;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror:
|
||||||
;; (package! some-package)
|
;; (package! some-package)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue