diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2019-01-01 01:47:04 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2019-01-01 01:47:04 +1300 |
commit | ccaa11ddd743875b8120765e4f412ec8cf3ec33a (patch) | |
tree | 9f2c087604cc69206f69fe252718fe04df2bbe4f | |
parent | Merge branch 'release/v4.3.0' into develop (diff) | |
download | dotfiles-ccaa11ddd743875b8120765e4f412ec8cf3ec33a.tar.gz dotfiles-ccaa11ddd743875b8120765e4f412ec8cf3ec33a.zip |
Add my new .emacs file
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | emacs/emacs | 7 |
3 files changed, 12 insertions, 0 deletions
@@ -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 @@ -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)))) |