summarylogtreecommitdiffstats
path: root/emacs-elpy.install
diff options
context:
space:
mode:
authorAlex Whitt2017-05-30 18:53:20 -0400
committerAlex Whitt2017-05-30 18:53:20 -0400
commit2cb9f1bb460c0f8d1e7b8a9783c4b22a2e0e8847 (patch)
treec897215da284e36c667944884e6d5fd30d787cb0 /emacs-elpy.install
downloadaur-2cb9f1bb460c0f8d1e7b8a9783c4b22a2e0e8847.tar.gz
Initial commit (WIP)
Diffstat (limited to 'emacs-elpy.install')
-rw-r--r--emacs-elpy.install21
1 files changed, 21 insertions, 0 deletions
diff --git a/emacs-elpy.install b/emacs-elpy.install
new file mode 100644
index 000000000000..741174cd2e86
--- /dev/null
+++ b/emacs-elpy.install
@@ -0,0 +1,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
+}