config(zsh): shell completion for delta and just
parent
22445ae1f7
commit
bce05d0298
|
@ -98,6 +98,12 @@ if command -v kitten &>/dev/null; then
|
||||||
alias kssh="kitten ssh"
|
alias kssh="kitten ssh"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# https://github.com/dandavison/delta
|
||||||
|
if command -v delta &>/dev/null; then
|
||||||
|
alias da="delta"
|
||||||
|
eval "$(delta --generate-completion zsh)"
|
||||||
|
fi
|
||||||
|
|
||||||
# https://github.com/wilfred/difftastic
|
# https://github.com/wilfred/difftastic
|
||||||
if command -v difft &>/dev/null; then
|
if command -v difft &>/dev/null; then
|
||||||
export DFT_DISPLAY=inline
|
export DFT_DISPLAY=inline
|
||||||
|
@ -139,6 +145,7 @@ fi
|
||||||
# https://github.com/casey/just
|
# https://github.com/casey/just
|
||||||
if command -v just &>/dev/null; then
|
if command -v just &>/dev/null; then
|
||||||
alias jst="just"
|
alias jst="just"
|
||||||
|
eval "$(just --completions zsh)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# https://github.com/crate-ci/typos
|
# https://github.com/crate-ci/typos
|
||||||
|
|
Loading…
Reference in New Issue