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