forked from Neptune/mirror.kickstart.nvim
Fix hardcoded home path in Claude settings for portability (OP#408) #4
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "fix/portable-settings-paths"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Replaces hardcoded
/home/dockyard/in the statusLine command with$HOMEso the Claude settings config is portable across all Gravity-managed servers.Before:
/usr/bin/python3 "/home/dockyard/.claude/plugins/..."After:
/usr/bin/python3 "$HOME/.claude/plugins/..."The hook command already used
$HOME— this brings the statusLine in line.Test Plan
$HOMEexpands correctly in Claude Code settings contextReferences
Epic: OP#408