blob: d3dd61db6d6f71c9fa33a1298dac551e4b932102 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
post_install () {
cat << EOF
==> Add this code to your .emacs file to inlude the package:
(require 'pos-tip)
==> Or, with use-package:
(use-package pos-tip)
EOF
}
post_upgrade () {
post_install $1
}
|