From 93eb2af279d447916e7ecf91291c036af2208caa Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Tue, 23 Sep 2025 17:55:04 +0100 Subject: [PATCH] feat(zsh): add delta completions setup for enhanced git integration --- zsh/git.zsh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zsh/git.zsh b/zsh/git.zsh index 894fe0d..790e1a9 100644 --- a/zsh/git.zsh +++ b/zsh/git.zsh @@ -21,3 +21,7 @@ git-largest-objects() { if command-exists difft; then export GIT_EXTERNAL_DIFF=difft fi + +if command-exists delta; then + setup-completions delta "$(mise-which delta)" delta completions zsh +fi