diff options
-rwxr-xr-x | git-hooks/post-checkout | 6 | ||||
-rwxr-xr-x | install | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/git-hooks/post-checkout b/git-hooks/post-checkout new file mode 100755 index 0000000..dfceaee --- /dev/null +++ b/git-hooks/post-checkout @@ -0,0 +1,6 @@ +#!/usr/bin/env zsh +if [[ -x =emacs ]] +then + emacs --batch -f batch-byte-compile ~/.emacs.d/init.el + emacs --batch -f batch-byte-compile ~/.emacs.d/elisp/*.el +fi diff --git a/install b/install index d7e89c0..0596b3e 100755 --- a/install +++ b/install @@ -33,6 +33,7 @@ install-dot () { done } +install-dot dotfiles/.git/hooks/ dotfiles/git-hooks/* install-dot .emacs.d/ dotfiles/emacs/* install-dot . dotfiles/^install(.) dotfiles/zsh/zshrc install-dot .ssh/ dotfiles/ssh/* |