Light & simple powerline theme for Git bash for windows
cd $HOME
mkdir -p .bash/themes/git_bash_windows_powerline
git clone https://github.com/Enprogames/git_bash_windows_powerline.git .bash/themes/git_bash_windows_powerline
Create .bashrc file in $HOME:
nano ~/.bashrc
And add the following to it:
# Theme
THEME=$HOME/.bash/themes/git_bash_windows_powerline/theme.bash
if [ -f $THEME ]; then
. $THEME
fi
unset THEME
- In order for this theme to render correctly, you will need a Powerline-patched font.
I recommend Space Mono for Powerline
Set font for git bash:
- Open git bash
- Right click > Options > Text > Font > Select
- Enter "Space Mono for Powerline" under font
- Click Ok
- Click Apply, then Save
MIT