Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/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
https://github.com/rsherstnev/zshcompletions
completion pentesting-tools zsh zsh-completion zsh-completions zsh-plugin zsh-plugins
Last synced: 3 months ago
JSON representation
This is repo with my custom zsh completion files for pentesting tools, which do not exist in zsh and oh-my-zsh by default
- Host: GitHub
- URL: https://github.com/rsherstnev/zshcompletions
- Owner: rsherstnev
- Created: 2020-09-21T09:53:19.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-02-26T03:40:59.000Z (11 months ago)
- Last Synced: 2024-02-26T15:29:15.069Z (11 months ago)
- Topics: completion, pentesting-tools, zsh, zsh-completion, zsh-completions, zsh-plugin, zsh-plugins
- Homepage:
- Size: 63.5 KB
- Stars: 11
- Watchers: 1
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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)**```bash
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:
```bash
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)
https://github.com/rsherstnev/zshcompletions/assets/26627142/1093e880-2182-416e-a729-e99f8518f873