forked from joeheyming/airmacs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
58 lines (50 loc) · 1.2 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
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
all: external pkg-install install
$(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 \
auto-save-buffers-enhanced \
csharp-mode \
dockerfile-mode \
expand-region \
groovy-mode \
helm \
helm-git-grep \
helm-ls-git \
hide-lines \
js-import \
js2-mode \
js2-refactor \
js2-refactor \
json-mode \
less-css-mode \
load-dir \
markdown-mode \
multiple-cursors \
neotree \
nlinum \
org \
org-bullets \
python-mode \
requirejs-mode \
rjsx-mode \
tern \
tern-auto-complete \
typescript-mode \
web-mode \
yaml-mode
# check package-install before you add to the external target
pkg-install:
./emacs-pkg-install.sh $(PACKAGES)
external:
# non-github links
cd ~/.elisp; wget -Nq http://www.emacswiki.org/emacs/download/highlight-beyond-fill-column.el