refactor: packagise emacs configuration and lib refactor

This commit is contained in:
Artur Manuel 2025-04-09 19:07:28 +01:00
commit 52c33aa328
Signed by: amadaluzia
SSH key fingerprint: SHA256:ubvwT66gNUKSsgSzEb2UQnX8pzTq5N+r8eRVYGJJm4Q
9 changed files with 208 additions and 168 deletions

16
config/config-ui.el Normal file
View file

@ -0,0 +1,16 @@
;; -*- lexical-binding: t -*-
(defun config-init-ui ()
(use-package doom-modeline
:defer t
:commands (doom-modeline-mode)
:custom
(doom-modeline-mode t)
(doom-modeline-height 26))
(use-package base16-theme
:config
(load-theme 'base16-tokyo-night-dark t)))
(provide 'config-ui)