summarylogtreecommitdiffstats
path: root/emacs-lll-mode-git.install
diff options
context:
space:
mode:
Diffstat (limited to 'emacs-lll-mode-git.install')
-rw-r--r--emacs-lll-mode-git.install14
1 files changed, 14 insertions, 0 deletions
diff --git a/emacs-lll-mode-git.install b/emacs-lll-mode-git.install
new file mode 100644
index 000000000000..ec75e02b8202
--- /dev/null
+++ b/emacs-lll-mode-git.install
@@ -0,0 +1,14 @@
+post_install() {
+ cat <<EOF
+==> Add this code to your Emacs init to use markdown-mode:
+
+(autoload 'lll-mode "lll-mode.el" "Major mode for editing LLL files" t)
+(setq auto-mode-alist (append '(("\\.lll$" . lll-mode)) auto-mode-alist))
+
+EOF
+}
+
+
+post_upgrade() {
+ post_install $1
+}