blob: 76d82cf7a02d32620d790254175c5076612b8b18 (
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
|
# -*- sh -*-
post_install() {
cat <<__EOT__
» You can set ov’s style and key bindings in the configuration file,
» that will be looked for in the following paths in descending order:
»
» \$XDG_CONFIG_HOME/ov/config.yaml
» \$HOME/.config/ov/config.yaml
» \$HOME/.ov.yaml
»
» You can find a couple of example configuration files here:
»
» /usr/share/doc/ov-git/ov.yaml
» /usr/share/doc/ov-git/ov-less.yaml
»
» Please consult the README:
»
» /usr/share/doc/ov-git/README.md
__EOT__
}
post_upgrade() {
post_install "$@"
}
# eof
|