Move library requires into core-lib

This commit is contained in:
Henrik Lissner 2017-02-04 02:54:22 -05:00
parent 093fa1b5a3
commit 3bce1246cd
2 changed files with 9 additions and 5 deletions

View file

@ -3,6 +3,15 @@
(defvar +evil-leader)
(defvar +evil-localleader)
(require 'dash)
(require 'f)
(require 's)
;;
;; Library
;;
(defmacro λ! (&rest body)
"A shortcut for inline keybind lambdas."
`(lambda () (interactive) ,@body))