diff options
author | Mattias Andrée <maandree@kth.se> | 2021-06-26 20:04:40 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-06-26 20:04:40 +0200 |
commit | d0c754055ddfcc56feae567b16b9044baada1386 (patch) | |
tree | 8d8e21d00daaa3e512c5e21d6e0c805ba212b409 /emacs | |
parent | Add the wrappers c, dmenu, mplayer, st, and aur (diff) | |
download | dotfiles-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 'emacs')
-rw-r--r-- | emacs/Makefile | 4 |
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 |