From db79c02b9c6dadb12c00992190d93d52e0b068c1 Mon Sep 17 00:00:00 2001 From: Li Tang Date: Fri, 17 Apr 2026 08:05:33 +0800 Subject: [PATCH] feat: add kiro-cli Signed-off-by: Li Tang --- .zshrc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.zshrc b/.zshrc index 8b92dff..4c0b162 100644 --- a/.zshrc +++ b/.zshrc @@ -1,3 +1,7 @@ + +# Kiro CLI pre block. Keep at the top of this file. +[[ -f "${HOME}/Library/Application Support/kiro-cli/shell/zshrc.pre.zsh" ]] && builtin source "${HOME}/Library/Application Support/kiro-cli/shell/zshrc.pre.zsh" + ############################################################################### # My Dotfiles - Zsh Configuration ############################################################################### @@ -427,3 +431,7 @@ bindkey -M viins '^d' vi-delete-char export PATH="$HOME/.antigravity/antigravity/bin:$PATH" alias claude-mem='bun "$HOME/.claude/plugins/marketplaces/thedotmack/plugin/scripts/worker-service.cjs"' + + +# Kiro CLI post block. Keep at the bottom of this file. +[[ -f "${HOME}/Library/Application Support/kiro-cli/shell/zshrc.post.zsh" ]] && builtin source "${HOME}/Library/Application Support/kiro-cli/shell/zshrc.post.zsh"