aboutsummaryrefslogtreecommitdiffstats
path: root/emacs
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-06-26 20:04:40 +0200
committerMattias Andrée <maandree@kth.se>2021-06-26 20:04:40 +0200
commitd0c754055ddfcc56feae567b16b9044baada1386 (patch)
tree8d8e21d00daaa3e512c5e21d6e0c805ba212b409 /emacs
parentAdd the wrappers c, dmenu, mplayer, st, and aur (diff)
downloaddotfiles-d0c754055ddfcc56feae567b16b9044baada1386.tar.gz
dotfiles-d0c754055ddfcc56feae567b16b9044baada1386.tar.bz2
dotfiles-d0c754055ddfcc56feae567b16b9044baada1386.tar.xz
Add e, ge, decrypt, encrypt, and encrypt-nosign
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--emacs/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/emacs/Makefile b/emacs/Makefile
index c22b5f4..c7f8527 100644
--- a/emacs/Makefile
+++ b/emacs/Makefile
@@ -30,6 +30,9 @@ install:
test ! -d ~/.config/profile.d/emacs && \
ln -sf -- ~/.dotfiles/emacs/user-profile ~/.config/profile.d/emacs; \
fi
+ mkdir -p -- ~/.local/bin
+ test ! -d ~/.local/bin/e
+ ln -sf -- "$$(which emacs)" ~/.local/bin/e
uninstall:
-unlink -- ~/.config/profile.d/emacs
@@ -37,5 +40,6 @@ uninstall:
-unlink -- ~/.config/emacs/init.el
-unlink -- ~/.emacs.d
-rmdir -- ~/.config/emacs
+ -unlink -- ~/.local/bin/e
.PHONY: install uninstall