Skip to content

Development Tools

Personal tooling setup and configurations.


Daily Drivers

Tool Purpose Config Location
Claude Code AI-assisted development ~/.claude/
VS Code Code editing ~/Library/Application Support/Code/
iTerm2 Terminal ~/.config/iterm2/
uv Python package management pyproject.toml

AI Tools

Claude Code

# Start Claude Code
claude

# With specific directory
claude /path/to/project

LM Studio

  • Port: 8002
  • Model: nomic-embed-text-v1.5
  • Purpose: Local embeddings

Development Environment

Python

# Using uv
uv sync
uv run python3 script.py

Node.js

# Using npm
npm install
npm run dev

Git Configuration

# ~/.gitconfig
[user]
    name = bfrichot
    email = bfrichot@gmail.com

Shell Aliases

# Add to ~/.zshrc
alias cc="claude"
alias gs="git status"
alias gp="git push"

Last Updated: January 2026