emacs-config/lisp/libs.el
Benson Chu 9a2dccbc13 Only load exwm at the end of the config
Also improved debug interface for Emacs. Rerun the "load full config"
prompt in order to jump into minimal emacs next boot.
2021-08-15 16:04:27 -05:00

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)