-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEldev
More file actions
30 lines (21 loc) · 981 Bytes
/
Copy pathEldev
File metadata and controls
30 lines (21 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
; -*- mode: emacs-lisp; lexical-binding: t -*-
;; basic setup
;; ----------------------------------------------------------------------
;; (eldev-use-package-archive 'gnu)
(eldev-use-package-archive 'melpa)
(eldev-use-plugin 'autoloads)
(setq eldev-main-fileset '("./*.el" "./templates/*"))
;; testing
;; ----------------------------------------------------------------------
(eldev-add-loading-roots 'test "test")
;; running in a default emacs
;; ----------------------------------------------------------------------
(eldev-add-extra-dependencies 'emacs 'ivy)
(eldev-add-loading-roots 'emacs "test")
(eldev-add-loading-roots 'emacs "dev")
(setq eldev-emacs-required-features '(mvtn mvtn-eldev-emacs))
;; packaging
;; ----------------------------------------------------------------------
(setq eldev-files-to-package '("./*.el" "./templates/*"))
(when (eq system-type 'windows-nt)
(setq eldev-tar-executable "C:/Windows/System32/tar.exe"))