mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-02-16 16:24:18 +00:00
18 lines
362 B
EmacsLisp
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)
|