From 7e6442d3275d1566c444e6c8ec8133967811e8c6 Mon Sep 17 00:00:00 2001 From: michaelmass <10071388+michaelmass@users.noreply.github.com> Date: Fri, 26 Jun 2026 02:59:28 -0400 Subject: [PATCH] update --- bash/.bash_profile | 1 + bash/.bashrc | 1 + bash/.profile | 1 + bash/.zshrc | 1 + claude/settings.json | 7 ++++--- nushell/unix-os.nu | 1 + 6 files changed, 9 insertions(+), 3 deletions(-) diff --git a/bash/.bash_profile b/bash/.bash_profile index 62bcf23..e9ad99d 100644 --- a/bash/.bash_profile +++ b/bash/.bash_profile @@ -12,6 +12,7 @@ export PATH="$PATH:~/.kit/bin" export PATH="$PATH:~/.kenv/bin" export PATH="$PATH:~/.deno/bin" export PATH="$PATH:~/.bun/bin" +export PATH="$PATH:~/.kimi-code/bin" export PATH="$PATH:$PNPM_HOME:$PNPM_HOME/bin" export PNPM_HOME="$HOME/Library/pnpm" export FNM_LOGLEVEL="quiet" diff --git a/bash/.bashrc b/bash/.bashrc index 5b27aee..abbc790 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -12,6 +12,7 @@ export PATH="$PATH:~/.kit/bin" export PATH="$PATH:~/.kenv/bin" export PATH="$PATH:~/.deno/bin" export PATH="$PATH:~/.bun/bin" +export PATH="$PATH:~/.kimi-code/bin" export PNPM_HOME="$HOME/Library/pnpm" export PATH="$PATH:$PNPM_HOME:$PNPM_HOME/bin" export FNM_LOGLEVEL="quiet" diff --git a/bash/.profile b/bash/.profile index 1a23cdb..eb5ff94 100644 --- a/bash/.profile +++ b/bash/.profile @@ -12,6 +12,7 @@ export PATH="$PATH:~/.kit/bin" export PATH="$PATH:~/.kenv/bin" export PATH="$PATH:~/.deno/bin" export PATH="$PATH:~/.bun/bin" +export PATH="$PATH:~/.kimi-code/bin" export PNPM_HOME="$HOME/Library/pnpm" export PATH="$PATH:$PNPM_HOME:$PNPM_HOME/bin" export FNM_LOGLEVEL="quiet" diff --git a/bash/.zshrc b/bash/.zshrc index 1a23cdb..eb5ff94 100644 --- a/bash/.zshrc +++ b/bash/.zshrc @@ -12,6 +12,7 @@ export PATH="$PATH:~/.kit/bin" export PATH="$PATH:~/.kenv/bin" export PATH="$PATH:~/.deno/bin" export PATH="$PATH:~/.bun/bin" +export PATH="$PATH:~/.kimi-code/bin" export PNPM_HOME="$HOME/Library/pnpm" export PATH="$PATH:$PNPM_HOME:$PNPM_HOME/bin" export FNM_LOGLEVEL="quiet" diff --git a/claude/settings.json b/claude/settings.json index 89fc70c..01a7735 100644 --- a/claude/settings.json +++ b/claude/settings.json @@ -15,14 +15,14 @@ ], "PostToolUse": [ { + "matcher": "*", "hooks": [ { "type": "command", "command": "memelord hook post-tool-use", "timeout": 5 } - ], - "matcher": "*" + ] } ], "Stop": [ @@ -63,5 +63,6 @@ } }, "skipDangerousModePermissionPrompt": true, - "voiceEnabled": true + "voiceEnabled": true, + "tui": "fullscreen" } diff --git a/nushell/unix-os.nu b/nushell/unix-os.nu index 3cc3021..a9a291e 100644 --- a/nushell/unix-os.nu +++ b/nushell/unix-os.nu @@ -19,6 +19,7 @@ let $paths = [ "/usr/local/opt/openjdk/bin", "~/.local/bin", "~/.local/sbin", + "~/.kimi-code/bin", ] $env.PATH = ($env.PATH | prepend $paths)