From 8135a209a54c5c99861a0c2f249c534c4deb9e09 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Thu, 13 Feb 2020 16:07:48 +0100 Subject: [PATCH] Powerline fonts --- tforgione.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/tforgione.sh b/tforgione.sh index 34558ff..1a37ca6 100755 --- a/tforgione.sh +++ b/tforgione.sh @@ -333,6 +333,21 @@ configure_neovim() { nvim +PlugInstall +qa } +configure_powerline() { + yes_no_ask "do you wish to install powerline fonts?" + + if [ $? -ne 0 ]; then + return + fi + + info installing powerline fonts + git_clone https://github.com/powerline/fonts + cd fonts + ./install.sh + cd .. + rm -rf fonts +} + configure_rust() { yes_no_ask "do you wish to install and configure rust?" if [ $? -ne 0 ]; then @@ -368,6 +383,7 @@ main() { configure_dotfiles configure_shell configure_neovim + configure_powerline configure_rust }