bf0d48ec30
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
15 lines
538 B
Bash
15 lines
538 B
Bash
# ~/mac/config/bashrc — sourced by ~/.bash_profile (marker block written by setup.sh)
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
for d in coreutils findutils gnu-sed grep gawk gnu-tar; do
|
|
PATH="/opt/homebrew/opt/$d/libexec/gnubin:$PATH"
|
|
done
|
|
export PATH
|
|
export EDITOR=vim
|
|
export CLICOLOR=1
|
|
alias ls='ls --color=auto'
|
|
alias ll='ls -lah'
|
|
alias grep='grep --color=auto'
|
|
alias opus='claude --dangerously-skip-permissions'
|
|
HISTSIZE=50000; HISTFILESIZE=100000; shopt -s histappend
|
|
PS1='\[\e[1;33m\]\u@\h\[\e[0m\]:\[\e[1;34m\]\w\[\e[0m\]\$ '
|