-
-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathEask
More file actions
28 lines (19 loc) · 778 Bytes
/
Eask
File metadata and controls
28 lines (19 loc) · 778 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
;; -*- mode: eask; lexical-binding: t -*-
(package "dashboard"
"1.9.0snapshot"
"A startup screen extracted from Spacemacs")
(website-url "https://github.com/emacs-dashboard/dashboard")
(keywords "startup" "screen" "tools" "dashboard")
(package-file "dashboard.el")
(files "dashboard-widgets.el" "*.org" "banners")
(script "test" "echo \"Error: no test specified\" && exit 1")
(source "gnu")
(source "melpa")
(depends-on "emacs" "27.1")
(development
(depends-on "elisp-lint")
(depends-on "page-break-lines"))
(setq network-security-level 'low) ; see https://github.com/jcs090218/setup-emacs-windows/issues/156#issuecomment-932956432
(add-hook 'eask-before-compile-hook
(lambda (&rest _)
(setq byte-compile-error-on-warn t)))