1
0
Fork 0

refactor(emacs): organise into reasonable modules

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2024-11-03 17:15:25 -05:00
parent 51a7ff1b9c
commit e99a639325
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47
10 changed files with 270 additions and 199 deletions

View file

@ -0,0 +1,31 @@
;;; priime-org.el --- Org-mode configuration
;;; Commentary:
;; Provides configuration for org-related packages.
;;; Code:
(use-package org :straight t)
(use-package org-roam :straight t
:after (org))
(use-package org-modern :straight t
:after (org)
:hook (org-mode . org-modern-mode)
:custom
(org-modern-star 'fold))
(use-package org-modern-indent
:straight
'(org-modern-indent
:type git
:host github
:repo "jdtsmith/org-modern-indent")
:after (org-modern)
:hook (org-mode . org-modern-indent-mode))
(use-package ob-racket
:straight
'(ob-racket
:type git
:host github
:repo "hasu/emacs-ob-racket"))
(provide 'priime-org)
;;; priime-org.el ends here