aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-01-01 01:47:04 +1300
committerTom Ryder <tom@sanctum.geek.nz>2019-01-01 01:47:04 +1300
commitccaa11ddd743875b8120765e4f412ec8cf3ec33a (patch)
tree9f2c087604cc69206f69fe252718fe04df2bbe4f
parentMerge branch 'release/v4.3.0' into develop (diff)
downloaddotfiles-ccaa11ddd743875b8120765e4f412ec8cf3ec33a.tar.gz
dotfiles-ccaa11ddd743875b8120765e4f412ec8cf3ec33a.zip
Add my new .emacs file
-rw-r--r--Makefile4
-rw-r--r--README.md1
-rw-r--r--emacs/emacs7
3 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 2629ec55..31018936 100644
--- a/Makefile
+++ b/Makefile
@@ -12,6 +12,7 @@
install-curl \
install-dillo \
install-dunst \
+ install-emacs \
install-ex \
install-finger \
install-games \
@@ -392,6 +393,9 @@ install-dunst: install-x
mkdir -p -- $(HOME)/.config/dunst
cp -p -- dunst/dunstrc $(HOME)/.config/dunst
+install-emacs:
+ cp -p -- emacs/emacs $(HOME)/.emacs
+
install-ex:
cp -p -- ex/exrc $(HOME)/.exrc
diff --git a/README.md b/README.md
index d2db5107..ceedf66f 100644
--- a/README.md
+++ b/README.md
@@ -86,6 +86,7 @@ Configuration is included for:
that works with `libnotify`
* `finger(1)` -- User information lookup program
* [Git](https://git-scm.com/) -- Distributed version control system
+* [GNU Emacs](https://www.gnu.org/software/emacs/) -- Extensible text editor
* [GnuPG](https://www.gnupg.org/) -- GNU Privacy Guard, for private
communication and file encryption
* [GTK+](https://www.gtk.org/) -- GIMP Toolkit, for graphical user interface
diff --git a/emacs/emacs b/emacs/emacs
new file mode 100644
index 00000000..a80f36a1
--- /dev/null
+++ b/emacs/emacs
@@ -0,0 +1,7 @@
+(require 'package)
+(add-to-list 'package-archives
+ '("melpa" . "https://melpa.org/packages/"))
+(package-initialize)
+(custom-set-variables
+ '(package-selected-packages
+ (quote (markdown-mode fireplace))))