diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-27T23·58+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-27T23·58+0000 |
commit | 4ef1396a5142d0fd537a265f1b747cbc755882e2 (patch) | |
tree | 071e0c6d3512d9744a2ea69a533e4278c9d8b2f0 /configs | |
parent | 7e1391cc47dbff891d9ebd2a734bdd3ead1ab56f (diff) |
Add missing dependencies to constants.el
Perhaps commits like these will become less frequent when I adopt Nix and a proper packaging strategy.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/shared/.emacs.d/wpc/constants.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/configs/shared/.emacs.d/wpc/constants.el b/configs/shared/.emacs.d/wpc/constants.el index b4a57f49cf1e..5bfedf5553c6 100644 --- a/configs/shared/.emacs.d/wpc/constants.el +++ b/configs/shared/.emacs.d/wpc/constants.el @@ -6,6 +6,17 @@ ;;; Code: +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; Dependencies +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(require 'prelude) +(require 'f) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; Configuration +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + ;; TODO: Consider merging `ui.el' and `misc.el' because those are the only ;; current consumers of these constants, and I'm unsure if the indirection that ;; globally defined constants introduces is worth it. |