/git_bash_powerline_theme

Powerline theme for git bash in windows

Primary LanguageShellGNU General Public License v3.0GPL-3.0

Git bash for Windows Powerline Theme

Light & simple powerline theme for Git bash for windows

ScreenShot

Pre-Requisites

  • In order for this theme to render correctly, you will need a Nerd font.

Installation:

I recommend the following:

cd $HOME
mkdir -p .bash/themes/git_bash_powerline_theme
git clone https://github.com/dhwanish-3/git-bash-powerline-theme.git .bash/themes/git_bash_powerline_theme

Create .bashrc file in $HOME directory if you already don't have one:

cd $HOME
touch .bashrc

Then add the following lines to the end of your .bashrc file:

# Theme
THEME=$HOME/.bash/themes/git_bash_powerline_theme/theme.bash
if [ -f $THEME ]; then
   . $THEME
fi
unset THEME