티스토리 뷰

공부/툴

Oh My ZSH & iTerm2

승가비 2019. 8. 18. 16:41
728x90

https://brew.sh/index_ko

 

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

[출처] https://medium.com/harrythegreat/oh-my-zsh-iterm2%EB%A1%9C-%ED%84%B0%EB%AF%B8%EB%84%90%EC%9D%84-%EB%8D%94-%EA%B0%95%EB%A0%A5%ED%95%98%EA%B2%8C-a105f2c01bec

728x90

'공부 > ' 카테고리의 다른 글

[Tool] Check IP  (0) 2020.02.13
Timestamp to String  (0) 2020.01.19
Encoding & Decoding  (0) 2020.01.19
[IntelliJ] set UTF-8 in Tomcat console log  (0) 2019.10.14
[OracleDB] Locale not recognized! (IntelliJ / SQL Developer)  (0) 2018.10.10
댓글