diff options
author | William Carroll <wpcarro@gmail.com> | 2019-03-11T23·04+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-03-11T23·08+0000 |
commit | 44e46bbce2bd94ff6c9379152696619186ae248d (patch) | |
tree | 32154c9e80ad33008ecb2011c9b1158d5bd8236d /configs/shared/emacs/.emacs.d/wpc/macros.el | |
parent | a5512fd7063908814376cb6689eb7dac8f284e76 (diff) |
Fix Emacs installation
My Emacs installation would fail on new machines because: * use-package * evil * paredit use-package is needed to install everything else. evil and paredit were required in functions.el and other places before they were called like (use-package evil ...). This should improve things but not fix the entire issue.
Diffstat (limited to 'configs/shared/emacs/.emacs.d/wpc/macros.el')
-rw-r--r-- | configs/shared/emacs/.emacs.d/wpc/macros.el | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/configs/shared/emacs/.emacs.d/wpc/macros.el b/configs/shared/emacs/.emacs.d/wpc/macros.el index aedd6f5b3cb9..02d7501b224d 100644 --- a/configs/shared/emacs/.emacs.d/wpc/macros.el +++ b/configs/shared/emacs/.emacs.d/wpc/macros.el @@ -5,11 +5,6 @@ ;; This file contains helpful variables that I use in my ELisp development. ;;; Code: - -(require 'dash) -(require 's) -(require 'string-functions) - (defmacro xi (&rest FORMS) `(lambda ,(--filter (s-contains? (symbol-name it) (prin1-to-string FORMS)) |