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

22
config/config-dev.el Normal file
View file

@ -0,0 +1,22 @@
;; -*- lexical-binding: t -*-
(defun config-init-dev ()
(use-package which-key
:defer t
:commands (which-key-mode)
:custom
(which-key-mode t))
(use-package envrc
:defer t
:commands (envrc-global-mode envrc-mode)
:custom
(envrc-global-mode t))
(use-package eglot
:defer t
:commands (eglot eglot-ensure)
:hook (prog-mode . eglot-ensure)))
(provide 'config-dev)