2025-05-03 18:04:12 +01:00
|
|
|
;;; config-ui --- UI configuration -*- lexical-binding: t -*-
|
2025-04-09 19:07:28 +01:00
|
|
|
|
2025-05-03 18:04:12 +01:00
|
|
|
;;; Commentary:
|
2025-04-09 19:07:28 +01:00
|
|
|
|
2025-05-03 18:04:12 +01:00
|
|
|
;; I need to do UI configuration and this is a
|
|
|
|
;; decent place to do that.
|
2025-04-15 05:47:12 +01:00
|
|
|
|
2025-05-03 18:04:12 +01:00
|
|
|
;;; Code:
|
2025-04-09 19:07:28 +01:00
|
|
|
|
2025-05-03 18:04:12 +01:00
|
|
|
(defun init-ui-config ()
|
|
|
|
"Just provide UI configuration."
|
2025-04-09 19:07:28 +01:00
|
|
|
(use-package base16-theme
|
|
|
|
:config
|
2025-05-03 18:04:12 +01:00
|
|
|
(load-theme 'base16-rose-pine t))
|
|
|
|
(use-package doom-modeline
|
|
|
|
:custom
|
|
|
|
(doom-modeline-mode t)))
|
2025-04-09 19:07:28 +01:00
|
|
|
|
|
|
|
(provide 'config-ui)
|
2025-05-03 18:04:12 +01:00
|
|
|
;;; config-ui.el ends here
|