feat(zsh): jj support

Why? idk

REF: https://github.com/jj-vcs/jj
This commit is contained in:
Ahmad Ansori Palembani 2025-04-25 07:27:53 +07:00
parent e80a0825e0
commit 1c1e7d5ec9
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
4 changed files with 50 additions and 2 deletions

View file

@ -71,6 +71,9 @@ _install_plugin https://github.com/zsh-users/zsh-autosuggestions
# ]] Plugins
# Custom fpath
fpath+=( "$XDG_DATA_HOME/zsh/functions/VCS_Info" )
_command_exists() {
[ $(command -v $1 | wc -l) -gt 0 ] && return 0 || return 1
}