summarylogtreecommitdiffstats
path: root/emacs-elpy.install
blob: 741174cd2e869fa9d32af5a77676e6a996fa4ca9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
post_install () {

cat << EOF

==> Add this code to your .emacs file to use the mode:

(require 'elpy)
(elpy-enable)

==> Or do the above with use-package:

(use-package elpy
  :config
  (elpy-enable))

EOF
}

post_upgrade () {
	post_install $1
}