rsherstnev / zshcompletions

This is repo with my custom zsh completion files for pentesting tools, which do not exist in zsh and oh-my-zsh by default

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to add completions for tools in my system?

  • Have zsh as your command interpreter and oh-my-zsh installed
  • Download completions files (anywhere, but home directory is preferred)
git clone https://github.com/rsherstnev/zshcompletions $HOME/zsh-custom-completions/
  • Put at the end of zsh config file your custom completions directory in the beginning of fpath variable and compinit function:
fpath=(
    $HOME/zsh-custom-completions
    $fpath
)
autoload -Uz compinit
compinit

Screencasts how my completion working looks like (with fzf tool installed and fzf, fzf-tab zsh plugins activated)

SQLMAP.example.mp4

About

This is repo with my custom zsh completion files for pentesting tools, which do not exist in zsh and oh-my-zsh by default