-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
77 lines (63 loc) · 1.79 KB
/
Makefile
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
all: external pkg-install install
install: $(patsubst .elisp/%,$(HOME)/.elisp/%,$(wildcard .elisp/*)) $(patsubst .emacs.d/snippets/%,$(HOME)/.emacs.d/snippets/%,$(wildcard .emacs.d/snippets/*))
/bin/cp -i .emacs $(HOME)/.emacs
$(HOME)/.elisp:
-mkdir $(HOME)/.elisp
$(HOME)/.elisp/%: .elisp/% $(HOME)/.elisp
-/bin/cp -rf $< $@
$(HOME)/.emacs.d/snippets/:
-mkdir -p $(HOME)/.emacs.d/snippets/
$(HOME)/.emacs.d/snippets/%: .emacs.d/snippets/% $(HOME)/.emacs.d/snippets/
-/bin/cp -rf $< $@
PACKAGES := all-the-icons \
auto-complete \
csharp-mode \
dash \
dockerfile-mode \
emojify \
eslintd-fix \
expand-region \
f \
flycheck \
groovy-mode \
helm \
helm-git-grep \
helm-ls-git \
hide-lines \
ht \
js2-mode \
js2-refactor \
json-mode \
less-css-mode \
load-dir \
magit \
markdown-mode \
multiple-cursors \
neotree \
nlinum \
org \
org-bullets \
python-mode \
request \
saveplace \
sublime-themes \
tern \
tern-auto-complete \
tide \
typescript-mode \
web-mode \
yasnippet \
yaml-mode
# check package-install before you add to the external target
pkg-install:
./emacs-pkg-install.sh $(PACKAGES)
~/.elisp/load-directory.el:
cd ~/.elisp; wget -Nq https://raw.githubusercontent.com/atog/emacs/master/load-directory.el
~/.elisp/highlight-beyond-fill-column.el:
cd ~/.elisp; wget -Nq https://raw.githubusercontent.com/jml/emacs-configuration/main/plugins/highlight-beyond-fill-column.el
~/.elisp/autopair.el:
cd ~/.elisp; wget -Nq https://raw.githubusercontent.com/joaotavora/autopair/master/autopair.el
~/.elisp/compile-eslint.el:
cd ~/.elisp; wget -Nq https://raw.githubusercontent.com/Fuco1/compile-eslint/master/compile-eslint.el
# non-github links
external: ~/.elisp/load-directory.el ~/.elisp/highlight-beyond-fill-column.el ~/.elisp/compile-eslint.el ~/.elisp/autopair.el