emacs-config/lisp/libs.el
2022-12-29 14:41:57 -06:00

18 lines
362 B
EmacsLisp

;;; Libraries that other parts of the config use
(use-package mmt)
(use-package f)
(use-package s)
(use-package memoize)
(use-package hydra)
;; I would like common lisp and the library of alexandria
(use-package dash)
(use-package anaphora)
(require 'cl-lib)
(require 'subr-x)
;; This is helpful, for exwm-related loading
(require 'use-exwm)
(provide 'libs)