refactor: packagise emacs configuration and lib refactor
This commit is contained in:
parent
60b02b0338
commit
52c33aa328
9 changed files with 208 additions and 168 deletions
22
config/config-dev.el
Normal file
22
config/config-dev.el
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue