all repos — dotfiles @ 60872a8c3737b285e0281454e8c44b057bd92a0c

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