all repos — dotfiles @ 95b6c1dc702d55f4e5a86e134270e7efea7bda70

Superseded by nixfiles

hooks/pre-up/emacs (view raw)

1
2
3
4
5
6
7
8
#!/usr/bin/env zsh

# Remove broken elisp symlink from old versions
elisp="$HOME/.emacs.d/elisp"
if [[ -L "$elisp" && ! -e "$elisp" ]]
then
	rm $elisp
fi