This plugin adds zsh-completion for the just tool.
-
-
Clone this repository to
$HOME/.oh-my-zsh/custom/plugins/:git clone https://github.com/jbarberu/zsh-justfile.git "${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}"/plugins/zsh-justfile -
Add
zsh-justfileto the plugins array in your zshrc file:plugins=(... zsh-justfile)
-
-
To install the plugin separately, clone this repository and source
zsh-justfile.plugin.zshin your zshrc. Then add this repository's path to the completion path:source ".../zsh-justfile/zsh-justfile.plugin.zsh" fpath+=".../zsh-justfile" autoload -U compinit compinit
- This repo structure was based off of the zsh-bitbake plugin.
- The plugin itself was "inspired by" this stack overflow answer