Skip to content

dhwanish-3/git_bash_powerline_theme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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