mirror of
https://github.com/pestctrl/emacs-config.git
synced 2026-06-14 20:31:20 +00:00
Also improved debug interface for Emacs. Rerun the "load full config" prompt in order to jump into minimal emacs next boot.
17 lines
335 B
EmacsLisp
17 lines
335 B
EmacsLisp
;;; Libraries that other parts of the config use
|
|
|
|
(use-package mmt)
|
|
(use-package f)
|
|
(use-package s)
|
|
(use-package dash)
|
|
(use-package memoize)
|
|
(use-package hydra)
|
|
|
|
;; I would like common lisp and the library of alexandria
|
|
(require 'cl)
|
|
(require 'subr-x)
|
|
|
|
;; This is helpful, for exwm-related loading
|
|
(require 'use-exwm)
|
|
|
|
(provide 'libs)
|