-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake.el
59 lines (53 loc) · 1.26 KB
/
make.el
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
(defconst remote-packages
'(anzu
avy
;; code-review
diff-hl
dockerfile-mode
;; dumb-jump
;; easy-kill
;; eglot
elfeed
forge
git-link
git-timemachine
link-hint
magit
nginx-mode
;; orderless
org-present
rainbow-mode
selected
;; string-inflection
;; vertico
;; visible-mark
vterm
yaml-mode)
"Packages to install.")
(defconst local-packages
'(ric-lib
min-theme
no-mouse-mode)
"Local packages to install.")
(defconst vc-packages
'("https://github.com/zerolfx/copilot.el"
"https://github.com/doomelpa/code-review")
"Local packages to install.")
;; setup package.el
(package-initialize)
(defun install-remote ()
"Install packages from remote archives."
(add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
(package-refresh-contents)
(dolist (package remote-packages)
(unless (package-installed-p package)
(package-install package)))
(print package-activated-list))
(defun install-local ()
"Install packages from local files."
(dolist (file local-packages)
(package-install-file (format "%s.el" file))))
(defun install-vc ()
"Install packages from version control."
(dolist (repo vc-packages)
(package-vc-install repo)))