This is my dotfiles.
# Link .config
ln -s ~/.dotfiles/.config ~/.config
# See: https://github.com/astral-sh/uv
curl -LsSf https://astral.sh/uv/install.sh | sh
# Install all tools
uv run scripts/tools.py install
# List all tools and installed versions
uv run scripts/tools.py list
# Check installed vs latest versions
uv run scripts/tools.py check
# Install a specific tool
uv run scripts/tools.py install <name>
# Update all tools
uv run scripts/tools.py update
# Update a specific tool
uv run scripts/tools.py update <name>