diff options
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Cask | 3 | ||||
| -rw-r--r-- | Makefile | 7 | ||||
| -rw-r--r-- | evil-collection.el | 2 |
4 files changed, 13 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d88ecb9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/.cask +*.elc @@ -0,0 +1,3 @@ +(source melpa) + +(package-file "evil-collection.el") diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b7c10ae --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +EMACS ?= emacs + +compile: + cask exec $(EMACS) -Q -batch \ + -L . \ + --eval '(setq byte-compile-error-on-warn t)' \ + -f batch-byte-compile *.el diff --git a/evil-collection.el b/evil-collection.el index 2dfd908..db017ad 100644 --- a/evil-collection.el +++ b/evil-collection.el @@ -8,7 +8,7 @@ ;; Pierre Neidhardt <ambrevar@gmail.com> ;; URL: https://github.com/jojojames/evil-collection ;; Version: 0.0.1 -;; Package-Requires: ((emacs "25.1")) +;; Package-Requires: ((emacs "25.1") (evil "1.2.13")) ;; Keywords: evil, tools ;; This program is free software; you can redistribute it and/or modify |
