공부/툴
Oh My ZSH & iTerm2
승가비
2019. 8. 18. 16:41
728x90
Homebrew
The Missing Package Manager for macOS (or Linux).
brew.sh
export PATH=/opt/homebrew/bin:$PATH
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install zsh
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
### zsh
```
https://github.com/naver/d2codingfont
Profile -> Text -> Font change D2Coding
```
```shell
brew install zsh
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
```
```shell
p=~/.zshrc
if ! grep -q 'ZSH_THEME="agnoster"' ${p}; then
echo 'ZSH_THEME="agnoster"' >> ${p}
else
echo "already exists 'ZSH_THEME'"
fi
if ! grep -q 'source $ZSH/oh-my-zsh.sh' ${p}; then
echo 'source $ZSH/oh-my-zsh.sh' >> ${p}
else
echo "already exists 'source'"
fi
```
https://github.com/naver/d2codingfont
Profile -> Text -> Font change
D2Coding
728x90