Skip to content

Commit 9dea64b

Browse files
committed
chore: enable context7 plugin, fix cd/zoxide alias, tweak k9s UI
1 parent 79b649e commit 9dea64b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

common/claude-code/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"enableAllProjectMcpServers": true,
55
"enabledPlugins": {
66
"terraform-skill@antonbabenko": true,
7-
"terragrunt-skill@jfr992": true
7+
"terragrunt-skill@jfr992": true,
8+
"context7@claude-plugins-official": true
89
},
910
"alwaysThinkingEnabled": true,
1011
"feedbackSurveyState": {

common/k9s/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ k9s:
1111
ui:
1212
enableMouse: false
1313
headless: false
14-
logoless: false
14+
logoless: true
1515
crumbsless: true
1616
splashless: true
1717
reactive: false

common/zsh/shared.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ rec {
1616
vim = "nvim";
1717
cat = "bat";
1818
tree = "tree -C";
19-
cd = "z";
20-
2119
# System maintenance shortcuts
2220
nix-clean =
2321
"echo '🧹 Starting cleanup...' && nix-collect-garbage --delete-older-than 7d && echo '✨ Quick cleanup complete'";
@@ -142,6 +140,7 @@ rec {
142140
# Zoxide initialization (skip in Claude Code to avoid cd override issues)
143141
if command -v zoxide >/dev/null 2>&1 && [[ "$CLAUDECODE" != "1" ]]; then
144142
eval "$(zoxide init zsh)"
143+
alias cd=z
145144
fi
146145
147146
# FZF shell integration for history search and file finding

0 commit comments

Comments
 (0)