origoni's Blog from Millky

origoni의 스프링 블로그 입니다.

oh-my-zsh 테마는 : ys

설치는 : sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

CentOS 의존성 : yum install -y zsh git

맥 호스트명 바꾸기 : sudo scutil --set HostName DK-iMac

A Photo Gallery

origoni 2017-04-19 07:13:39

yum -y install zsh
yum -y install git
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
vi ~/.zshrc

origoni 2019-07-22 19:44:51

# 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 git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions

~/.zshrc
plugins=(
git
zsh-syntax-highlighting
zsh-autosuggestions
)

origoni 2023-01-09 23:31:47

git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
back to top