blob: 6ec8266c24ff0073a5cf640942c3b573e1d0d708 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
post_install () {
cat << EOF
==> Add this code to your .emacs file to use the mode:
(require 'anzu)
(global-anzu-mode +1)
==> If you are using spaceline or another modeline modifier that
references anzu internally:
(setq anzu-cons-mode-line-p nil))
==> Or do the above with use-package:
(use-package anzu
:config
(global-anzu-mode +1)
(setq anzu-cons-mode-line-p nil)) ;If using spaceline or the like
EOF
}
post_upgrade () {
post_install $1
}
|