如果你没有使用oh-my-zsh,可以直接从GitHub克隆zsh-autosuggestions仓库到你的本地机器: 克隆仓库到~/.zsh/zsh-autosuggestions(或你选择的任何目录): sh git clone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions 打开你的.zshrc文件。 添加以下行来设置zsh-autosuggestions的路...
git clone https://github.com/zsh-users/zsh-autosuggestions${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions 2. 在.zshrc中,把zsh-autosuggestions加入插件列表: plugins=(# other plugins...zsh-autosuggestions# 插件之间使用空格隔开) 3. 开启新的 Shell 或执行source ~/.zshrc,就可以...
git clone https://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions 编辑配置文件: vi ~/.zshrc # 加入插件列表 plugins=( git zsh-autosuggestions ) 更新配置: source ~/.zshrc 要注意 vi 的保存操作,不熟悉的小伙伴可以先查一下命令。 这时候打开终端,输入命令就会有提示...
ZSH_THEME="ys" autosuggestions设置 最后就是另一个及其重要的功能,zsh-autosuggestions,它是在zsh基础上的命令提醒功能,大多数情况下,我们键入的命令有很高的重复性,而这个提醒功能能有效提高效率。 安装zsh-autosuggestions: 代码语言:javascript 复制 git clone https://github.com/zsh-users/zsh-autosuggestions ...
https://dev.to/mskian/install-z-shell-oh-my-zsh-on-ubuntu-1804-lts-4cm4 https://github.com/zsh-users/zsh-autosuggestions/blob/master/INSTALL.md PART I (oh-my-zsh) Install prerequisite packages (ZSH, powerline & powerline fonts) 1 2 sudo apt install zsh sudo apt-get install powerlin...
sudoapt-get installzsh sh-c"$(wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)" 1. 2. 3. 然后termianl关闭,然后重新登陆就可以启用zsh啦 2.zsh-autosuggestions安装 这个也很简单 gitclone https://github.com/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosugge...
我们在使用vscode等编辑器时,有一个非常好用的功能就是语法提示,zsh-autosuggestions这个插件就是让我们在zsh中也有类似的能力,当我们打出e时,能给出echo something的提示,大大提升我们输入命令的速度。 这个插件也可以通过brew来进行安装: brew install zsh-autosuggestionssource$(brew --prefix)/share/zsh-autosug...
在plugin中添加zsh-autosuggestions和zsh-syntax-highlighting :wq #保存退出 source ~/.zshrc 添加插件 【六】使用命令别名简化命令 修改~/.zshrc 保存退出 alias使用 效果 【七】知道方法后就可以自己定制自己的zsh了,喜欢的就点个赞吧 更多自带主题可以在~/.oh-my-zsh/themes下查看 ...
zsh-autosuggestions zsh-syntax-highlighting autojump hyper 不建议安装oh-my-zsh zsh安装 如果你用 Mac,就可以直接看下一节 如果你用 Redhat Linux,执行:sudo yum install zsh 如果你用 Ubuntu Linux,执行:sudo apt-get install zsh 如果你用 Windows……去洗洗睡吧。
git clone https://github.com/zsh-users/zsh-autosuggestions.git echo "source ${(q-)PWD}/zsh-autosuggestions/zsh-autosuggestions.zsh" >> ${ZDOTDIR:-$HOME}/.zshrcm/zsh-users/zsh-autosuggestions ~/.zsh/zsh-autosuggestions 配置: source ./zsh-autosuggestions/zsh-autosuggestions.zsh LceAn:ZS...