mirror of
https://github.com/trailofbits/claude-code-devcontainer
synced 2026-06-21 14:11:48 +00:00
b05e32be35
- 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>
16 lines
354 B
Bash
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'
|