pankomacs/config/config-ui.el

17 lines
330 B
EmacsLisp
Raw Normal View History

;; -*- lexical-binding: t -*-
(defun config-init-ui ()
(use-package doom-modeline
:defer t
:commands (doom-modeline-mode)
:custom
2025-04-14 20:44:00 +01:00
(doom-modeline-mode t)
(doom-modeline-height (+ doom-modeline-height 4)))
(use-package base16-theme
:config
(load-theme 'base16-rose-pine t)))
(provide 'config-ui)