From 58e628aaeecb0e5aebd684946aba89ca2a09a35f Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 21 Apr 2020 13:41:01 +0200 Subject: emacs: added some files that were missing to be linked MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In particular, abbrevs.el and early-init.el also need to be symlinked upon installation. Signed-off-by: Miquel Sabaté Solà --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 236e271..1d354c8 100755 --- a/install.sh +++ b/install.sh @@ -64,7 +64,7 @@ done # GNU Emacs: most files can be simply linked, the only exception being # init.el. To know why check .emacs.d/README.org. mkdir -p "${HOME:?}/.emacs.d" -for i in lisp org-templates snippets custom.el gtkrc init.org; do +for i in abbrevs.el early-init.el lisp org-templates snippets custom.el gtkrc init.org; do rm -rf "${HOME:?}/.emacs.d/$i" ln -s "$(readlink -f .emacs.d/$i)" "${HOME:?}/.emacs.d/$i" done -- cgit v1.2.3