非常好用的一款终端界面及管理 特别是配合一些小插件和fzf,yyds!
接下来会详细介绍如何在macOS和ubuntu下进行安装,其实他两基本一个步骤,只会有一点点的不一样
首先安装zsh
:
sudo apt install zsh wget
然后再:
wget https://gitee.com/kin_zhang/misc_codes/raw/master/scripts/ohmyzsh.sh
sh ohmyzsh.sh
【从这里复制的code已经是换好的,如果是走的官方github】建议打开修改一下gitee源:https://gitee.com/mirrors/oh-my-zsh.git
可以看到安装完成后已经设置了默认主题 如前言图
对于brew的安装 见:随手记录: Macbook/MacOS 快速安装brew
brew install wget
wget https://gitee.com/kin_zhang/misc_codes/raw/master/scripts/ohmyzsh.sh
sh ohmyzsh.sh
brew install fzf
MacOS和Ubuntu共用一个指令
以下为已经替换成了gitee链接的
git clone https://gitee.com/kin_zhang/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
git clone https://gitee.com/jklash1996/zsh-syntax-highlighting.git ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting
vim ~/.zshrc
# OR
code ~/.zshrc
# OR
gedit ~/.zshrc
找到plugin, 添加如下的plugin即可
plugins=(git zsh-autosuggestions zsh-syntax-highlighting fzf)
fzf的使用 主要是 一个指令的历史选择,
比如 如下gif,按下CTRL+R,Control+R 即可出现如下gif的历史记录,自动补全是前面的 zsh-autosuggestions 也可以实现部分,不过历史记录的话 还是fzf
虽然是在 mac上的gif 但是同样适用于Ubuntu哈
赠人点赞 手有余香 😆;正向回馈 才能更好开放记录 hhh