oh my zsh
2023年5月25日小于 1 分钟
zsh
常规安装
on my zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
plugin
zsh-autosuggestions
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
load zsh-autosuggestions
plugins=(
# other plugins...
zsh-autosuggestions
)
zsh-syntax-highlighting
git clone https://github.com/zsh-users/zsh-syntax-highlighting ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting
load zsh-autosuggestions
plugins=(
# other plugins...
zsh-syntax-highlighting
)
fzf-tab
git clone https://github.com/Aloxaf/fzf-tab ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/fzf-tab
load zsh-autosuggestions
plugins=(
# other plugins...
fzf-tab
)