blob: b9222c5efad82cbb3a2074cd2ca8590b3ca406ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install() {
echo " add the following in your .emacs file:"
echo " (add-to-list 'load-path \"/usr/share/emacs/site-lisp/yas\")"
echo " (require 'yasnippet) ;; not yasnippet-bundle"
echo " (yas/global-mode 1) ;; or manually load it with yas-global-mode"
}
post_upgrade() {
post_install
}
pre_remove() {
echo "If you like remove the yasnippet stuff from your .emacs"
}
|