aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-05-09 23:51:55 -0700
committerGravatar Tom Willemse2020-05-09 23:51:55 -0700
commit8d9320be834f3f59e0ffdbf59cf7a20c341ac9b6 (patch)
treec7683a27405899c73c11812dcdf20df115eda721 /emacs
parentf310ee6b9c8640eefb1b1f4e157d85b2fa04ea60 (diff)
downloadnew-dotfiles-8d9320be834f3f59e0ffdbf59cf7a20c341ac9b6.tar.gz
new-dotfiles-8d9320be834f3f59e0ffdbf59cf7a20c341ac9b6.zip
Clean up Emacs config
Everything’s moved to my emacs-config project
Diffstat (limited to 'emacs')
-rw-r--r--emacs/.emacs.d/.gitignore1
-rw-r--r--emacs/.emacs.d/GNUmakefile33
2 files changed, 0 insertions, 34 deletions
diff --git a/emacs/.emacs.d/.gitignore b/emacs/.emacs.d/.gitignore
deleted file mode 100644
index f1caf65..0000000
--- a/emacs/.emacs.d/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-.python-environments
diff --git a/emacs/.emacs.d/GNUmakefile b/emacs/.emacs.d/GNUmakefile
deleted file mode 100644
index 8b8cad5..0000000
--- a/emacs/.emacs.d/GNUmakefile
+++ /dev/null
@@ -1,33 +0,0 @@
-SHELL = bash
-EMACS := emacs
-
-.SECONDARY:
-
-VENDOR_DIRS := $(wildcard vendor-lisp/*)
-BASE_DIR := $(CURDIR)
-
-.PHONY: all snippets
-all: init.elc snippets
-
-%.elc: %.el
- @echo -e "\e[31mELC\e[0m $<"
- @$(EMACS) -batch \
- -directory "$(HOME)/.emacs.d/vendor-lisp/emacs-slack" \
- -directory "$(HOME)/.emacs.d/vendor-lisp/circe" \
- -directory "$(HOME)/.emacs.d/vendor-lisp/circe-serenity" \
- -eval "(package-initialize)" \
- -eval "(byte-compile-file \"$<\")"
-
-### Snippets
-
-SNIPPET_DIRS = $(wildcard snippets/*)
-COMPILED_SNIPPETS = $(addsuffix /.yas-compiled-snippets.el, $(SNIPPET_DIRS))
-
-%/.yas-compiled-snippets.el: %/*
- @echo -e "\e[36mYAS\e[0m $(BASE_DIR)/snippets"
- @$(EMACS) -batch \
- -eval "(package-initialize)" \
- -l yasnippet \
- -eval "(yas-compile-directory \"$(BASE_DIR)/snippets\")"
-
-snippets: $(COMPILED_SNIPPETS)