terminal settings - RLidea/dev.docs GitHub Wiki
Customize
Command + ,
> Profiles
Install
Brew
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" brew update
Zsh
brew install zsh
Install oh my zsh
curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
Plugins
zsh plugin
์ด ์ ์ฅ๋๋ ๊ฒฝ๋ก๋ ๋ค์๊ณผ ๊ฐ๊ณ , ํ๊ฒฝ๋ณ์ $ZSH_CUSTOM
๋ก ํธ์ถ ๊ฐ๋ฅํ๋ค.
~/.oh-my-zsh/custom/plugins/
์ถ์ฒ ํ๋ฌ๊ทธ์ธ ์ค์น
# zsh-syntax-highlighting ํ์ด๋ผ์ดํ
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
# zsh-autosuggestions ๋ช
๋ น์ด ์๋ ์ถ์ฒ
git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
ํ๋ฌ๊ทธ์ธ ์ฐ๊ฒฐ
์ค์นํ ํ๋ฌ๊ทธ์ธ์ .zshrc
์ plugins
์ ๋ฑ๋กํด์ฃผ๋ฉด ์๋ํ๋ค.
.zshrc
plugins=(
git
zsh-syntax-highlighting
zsh-autosuggestions
)
Setting
Git
git config --global user.name "your name"
git config --global user.email "[email protected]"