summarylogtreecommitdiffstats
path: root/emacs-lll-mode-git.install
blob: ec75e02b82020b071fb53c397a0f1b5c98370ea8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
}