[Window] Set zsh(oh-my-zsh) on Git Bash
ETCDownload zsh
Download the compressed file via the download link.
Insert zsh settings folder
- Disassemble the downloaded zst compressed file.
- Release the tar compressed file in the decompressed folder.
- Overwrite the etc, user folder in the decompressed folder to the Git installation folder (C:\Program Files\Git).
Run zsh
zsh
There are a few questions for setting up the basics. Proceed with a careful reading.
oh-my-zsh installation
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
Set to go to zsh when running Git Bash
~/.bashrc file modification
vi ~/.bashrc
# Launch Zsh
if [ -t 1 ]; then
exec zsh
fi
Apply modifications
source ~/.bashrc
Restart Git Bash
Theme Settings
Check the link for the theme type
vi ~/.zshrc
ZSH_THEME="agnoster"
Apply modifications
source ~/.zshrc
Delete the user name that appears at the prompt
vi ~/.zshrc
prompt_context() {
if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
prompt_segment black default "%(!.%{%F{yellow}%}.)$USER"
fi
}
source ~/.zshrc
Reference
https://wayhome25.github.io/etc/2017/03/12/zsh-alias
https://cyanlh.github.io/Dev-ETC/windows10에서-powershell과-git-bash에-zsh-설치하기
https://doda.tistory.com/entry/Windows-git-bash%EC%97%90-zsh-oh-my-zsh