From 435e95bf0f7c8a3246dad6111ce9fd089c26a00f Mon Sep 17 00:00:00 2001 From: Li Tang Date: Wed, 27 May 2026 10:37:03 +0800 Subject: [PATCH] chore: add zi and remove kiro-cli Signed-off-by: Li Tang --- .zshrc | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/.zshrc b/.zshrc index 271e13b..8fb6968 100644 --- a/.zshrc +++ b/.zshrc @@ -1,10 +1,3 @@ - -# 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" - - -# Kiro CLI pre block. Keep at the top of this file. -# ############################################################################### # My Dotfiles - Zsh Configuration ############################################################################### @@ -512,9 +505,7 @@ function copilot_local { copilot } -# 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" - - -# Added by Antigravity CLI installer -export PATH="/Users/d0zingcat/.local/bin:$PATH" +function zi() { + local dir + dir=$(zoxide query -l | fzf --preview 'ls -la {}') && z "$dir" + }