blob: 5318cc011f0fa68d09e53af20ff7ea1b6f87be93 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
post_install() {
cat <<EOF
IMPORTANT
=========
Powerline requires custom glyphs to work properly. A font with these glyphs has
been installed along with a fontconfig file which enables the glyphs for many
common coding fonts.
If Powerline doesn't work out of the box on your system, please submit an issue
on GitHub: https://github.com/powerline/powerline/issues
Consult the documentation for detailed installation instructions and
troubleshooting information: https://powerline.readthedocs.org/en/latest/
Vim installation
----------------
The plugin has been installed and is enabled by default.
Zsh installation
----------------
Add the following line to your ~/.zshrc:
. /usr/share/zsh/site-contrib/powerline.zsh
Tmux installation
-----------------
Add the following line to your ~/.tmux.conf:
source '/usr/share/tmux/powerline.conf'
Systemd service
---------------
An user service has been installed, enable with:
systemctl --user --now enable powerline-daemon
EOF
}
|