- Download the latest zsh package: https://packages.msys2.org/package/zsh?repo=msys&variant=x86_64
Example:
zsh-5.7.1-1-x86_64.pkg.tar.xz
Update:
The package now is compacted using zstd
, so now we need some "special" extractor.
So, in my case, I've downloaded this file
https://repo.msys2.org/msys/x86_64/zsh-5.8-5-x86_64.pkg.tar.zst
And extracted it using the Peazip.
https://peazip.github.io/zst-compressed-file-format.html
- Extract the content to your git bash installation dir:
Usually C:\Program Files\Git
- Test it and config zsh:
Open git bash and type:
zsh
So, this step is important, it seems zsh
will ask a few configurations, like the tab completion, history, etc.
Please read the options and set that according to your use.
- Installing oh-my-zsh, execute the following cmd on git bash
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- Configuring zsh as default shell
Edit the ~/.bashrc
file. (create it if it doesn't exist)
Add the following lines at the end of the file
# Launch Zsh
if [ -t 1 ]; then
exec zsh
fi
Close and open again the git bash.
- Installing the Honukay theme
curl -fsSL https://raw.githubusercontent.com/oskarkrawczyk/honukai-iterm/master/honukai.zsh-theme -o ~/.oh-my-zsh/custom/themes/honukai.zsh-theme
- Set it
sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="honukai"/g' ~/.zshrc
Ok, I have absolutely NO IDEA about this one, but it works. I was checking out this article and saw that in the bottom notes he suggests to place
unset LESS;
at the end of~/.zshrc
because "on some commands oh-my-zsh runs less command with -R (repaint)". That had me curious, so I tried and I have no more crashes.Just to be clear, that
-R
flag actually instructs less to print raw control characters. This MAY be a reason for the crashes, but I don't know anything more than that.I tried to look for
less
usages inside oh-my-zsh to no luck (found it inside some plugins, but I haven't enabled any of them). I really have no clue 👀