Geoffrey Frogeye
105f34ca50
Well, this is the only theme I found that had a correct vim plugin and had enough contrast (this is important for me). The dark-brown background is a bit sadder than the blue one I might revert to solarized at one moment or another.
10 lines
402 B
Bash
Executable file
10 lines
402 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
mkdir -p $HOME/.local/share/fonts
|
|
echo $(for i in "" "%20Bold" "%20Oblique" "%20Bold%20Oblique"; do
|
|
cd $HOME/.local/share/fonts
|
|
wget http://raw.githubusercontent.com/powerline/fonts/master/DejaVuSansMono/DejaVu%20Sans%20Mono$i%20for%20Powerline.ttf
|
|
done)
|
|
wget "https://aur.archlinux.org/cgit/aur.git/plain/icons.ttf?h=ttf-font-icons" -O $HOME/.local/share/fonts/icons.ttf
|
|
|