Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/little-rocks-own.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'tk-dotfiles': patch
---

Update brewfile and a claude code alias
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ git/env.zsh
git/gitconfig.local.symlink
git/gitconfig.symlink
Brewfile.lock.json
node_modules/
node_modules/
.claude/
logs/
8 changes: 6 additions & 2 deletions Brewfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@ brew 'mas' # CLI for installing app from Mac App Store
brew 'mongodb-community', restart_service: false # NoSQL database (manual start: brew services start mongodb-community)
brew 'openssl' # Cryptography and SSL/TLS Toolkit
brew 'postgresql', restart_service: false # SQL database (manual start: brew services start postgresql)
brew 'pyenv' # Python virtual env
brew 'readline' # Library for command-line editing
brew 'redis', restart_service: false # In-memory database (manual start: brew services start redis)
brew 'starship' # Cross-shell prompt for astronauts
brew 'tmux' # Terminal multiplexer
brew 'uv' # Extremely fast Python package installer and resolver
brew 'wget' # Internet file retriever
brew 'zsh-autocomplete' # Zsh plugin that adds tab completion for common commands
Expand All @@ -41,6 +43,7 @@ brew 'zsh' # UNIX shell (command interpreter)
cask '1password' # Password manager
cask 'claude' # AI programming friend
cask 'claude-code' # AI programming friend
cask 'cmux' # Ghostty-based terminal with vertical tabs
cask 'cursor' # Write, edit, and chat about your code with AI
cask 'discord' # VoIP and chat app
cask 'firefox' # Web browser
Expand All @@ -49,6 +52,7 @@ cask 'font-jetbrains-mono-nerd-font' # Monospace font with programming ligatures
cask 'google-chrome' # Web browser
cask 'ghostty' # Terminal emulator
cask 'insomnia' # REST client
cask 'raycast' # Extendable launcher app
cask 'readdle-spark' # Email client
cask 'spotify' # Music streaming service
cask 'tableplus' # GUI for databases
Expand All @@ -58,5 +62,5 @@ cask 'zoom' # Video conferencing software

# Install mas apps
# mas 'Keycastr', id: 1058125028 # Keystroke visualizer
mas 'Lungo', id: 1263070803 # Prevents your Mac from going to sleep
mas 'Magnet', id: 441258766 # Window manager
# mas 'Lungo', id: 1263070803 # Prevents your Mac from going to sleep
# mas 'Magnet', id: 441258766 # Window manager
15 changes: 5 additions & 10 deletions claude/claude_desktop_config.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,13 @@
"-y",
"@modelcontextprotocol/server-sequential-thinking"
]
},
"serena": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/oraios/serena",
"serena",
"start-mcp-server"
]
}
},
"preferences": {
"chromeExtensionEnabled": true
"chromeExtensionEnabled": true,
"coworkScheduledTasksEnabled": true,
"sidebarMode": "chat",
"coworkWebSearchEnabled": true,
"ccdScheduledTasksEnabled": true
}
}
5 changes: 4 additions & 1 deletion macos/aliases.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
alias ..="cd .."
alias ...="cd ../.."
alias ....="cd ../../.."
alias .....="cd ../../../.."
alias .....="cd ../../../.."

# Claude Code Orchestration
alias cldyo='export CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1 && claude --dangerously-skip-permissions --model opus --teammate-mode tmux'
2 changes: 2 additions & 0 deletions zsh/zshrc.symlink
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,5 @@ eval "$(starship init zsh)"

# GPG signature
export GPG_TTY=$(tty)

export PATH="$HOME/.local/bin:$PATH"
Loading