Files
Dan Guido b05e32be35 Address PR review feedback
- Switch to mcr.microsoft.com/devcontainers/base:ubuntu-24.04
- Use native Claude Code install (curl | bash)
- Add devcontainer features for Python, gh, Node, Tailscale
- Add JSON schema to devcontainer.json
- Extract shell config to .zshrc file
- Simplify apt-get layer

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-20 18:03:12 -05:00

16 lines
354 B
Bash

# Zsh configuration for Claude Code devcontainer
# Add Claude Code to PATH
export PATH="$HOME/.local/bin:$PATH"
# History settings
export HISTFILE=/commandhistory/.zsh_history
export HISTSIZE=200000
export SAVEHIST=200000
setopt SHARE_HISTORY
setopt HIST_IGNORE_DUPS
# Aliases
alias fd=fdfind
alias claude-yolo='claude --dangerously-skip-permissions'