博客

zsh 插件

zsh
plugin

A bright pink sheet of paper used to wrap flowers curves in front of rich blue background

zsh 插件

zsh 是一个交互使用而设计的 shell,也是一个强大的脚本语言。通过配置一些插件,可以让 zsh 在你的 shell 中拥有更多的功能。

zsh-autosuggestions

可以让你在 zsh 中使用自动补全。

zsh-autosuggestions

使用

1.克隆这个仓库到 zsh 的插件目录下(默认:~/.oh-my-zsh/custom/plugins)。

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

2.添加这个插件到你的 zsh 配置文件中(默认:~/.zshrc)。

plugins=( 
  # other plugins...
  zsh-autosuggestions
)

zsh-syntax-highlighting

命令高亮,检查输入命令是否正确。

highlighting

使用

1.克隆这个仓库到 zsh 的插件目录下(默认:~/.oh-my-zsh/custom/plugins)。

git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting

2.添加这个插件到你的 zsh 配置文件中(默认:~/.zshrc)。

plugins=( 
  # other plugins...
  zsh-syntax-highlighting
)

Pnpm 命令自动补全

命令自动补全是 Pnpm 区别于其他流行包管理器的一个特点。查看更多

pnpm install-completion zsh