1
0
Fork 0
dotfiles/.emacs.d/include/priime-elisp.el
Lucas Sta Maria 9930a9d79f
fix(emacs): add ht package
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
2024-11-25 23:09:20 -05:00

16 lines
370 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 emacs-async :straight t)
(provide 'priime-elisp)
;;; priime-elisp.el ends here