blob: d7d7414544d58e64d94513e9b3f24c4ab05900d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
post_install () {
cat << EOF
==> Add this code to your .emacs file to use the mode:
(require 'git-timemachine)
(use-package git-timemachine)
EOF
}
post_upgrade () {
post_install $1
}
|