1
0
Fork 0
dotfiles/.emacs.d/include/priime-elisp.el
Lucas Sta Maria b10356385e
fix(emacs): re-add emacs-async
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
2024-12-10 14:48:35 -05:00

17 lines
404 B
EmacsLisp

;;; priime-elisp.el --- Elisp configuration
;;; Commentary:
;; Provides configuration for Elisp-related libraries and functions
;;; Code:
(require 'straight)
(use-package s :straight t)
(use-package f :straight t)
(use-package ht :straight t)
(use-package dash :straight t)
(use-package htmlize :straight t)
(use-package emacs-async :straight t)
(provide 'priime-elisp)
;;; priime-elisp.el ends here