Let zsh in kali2020 have a completion function

The zsh in kali2020 does not have a complete function, it is not convenient to use, or you have to switch to bash, get used to it, and add this function to zsh!
A. zsh-autosuggestions automatic completion plugin

下载该插件到.oh-my-zsh的插件目录

#git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
Edit the .zshrc file and
find the plugins=(git) line, if not add it. Change to the following
plugins=(git zsh-autosuggestions)
restart command

B. incr auto-completion plug-in
Download the auto-completion plug-in http://mimosa-pudica.net/src/incr-0.2.zsh and
put it in the plug-in library of oh-my-zsh. oh
-my-zsh/plugins/ create incr file Folder into this folder
Add
in
.zshrc Add the following line at the end of the .zshrc file source ~/.oh-my-zsh/plugins/incr/incr*.zsh
restart the command line

Author: tianyu_f
link: https: //www.jianshu.com/p/aea390c1c8ef

Guess you like

Origin blog.csdn.net/seaship/article/details/114985666
zsh