Free & Open Source

A beautiful Zsh theme
for developers who care

Minimal, fast, and designed to match the Clauder Limiter aesthetic. Make your terminal as beautiful as your dashboard.

Your terminal will look like this!

bussin@macbook~/projects/appmain
>npm run dev
Ready on http://localhost:3000
bussin@macbook~/projects/appfeature/new-ui*
>

Lightning Fast

Zero-lag prompt with async git status. No more waiting for your terminal.

Git Aware

Shows current branch and dirty/clean status with visual indicators.

Exec Time

Right-side timestamp shows when each command was executed.

Beautiful Colors

Coral and yellow accents that match the Clauder Limiter aesthetic.

Get Started

Installation

Choose your preferred installation method and get started in seconds.

1

Clone the theme

Bash
git clone https://github.com/nksrentas/clauder-zsh-theme.git \
  $ZSH_CUSTOM/themes/clauder-limiter
2

Update your .zshrc

Bash
# Open your .zshrc file
nano ~/.zshrc

# Change ZSH_THEME to:
ZSH_THEME="clauder-limiter/clauder-limiter"
3

Reload your shell

Bash
source ~/.zshrc
Source Code

The Theme

Here's the complete theme code. It's lightweight and easy to customize.

Bash
# clauder-limiter.zsh-theme
# Colors matching Clauder Limiter dashboard

CORAL="%F{#DA7756}"
YELLOW="%F{#FFF3CD}"
EMERALD="%F{#10b981}"
MUTED="%F{#6b6b6b}"
RESET="%f"

git_prompt_info() {
  local ref=$(git symbolic-ref HEAD 2>/dev/null) || return
  local branch="${ref#refs/heads/}"
  local status=""
  if [[ -n $(git status --porcelain 2>/dev/null) ]]; then
    status="${CORAL}*${RESET}"
  else
    status="${EMERALD}✓${RESET}"
  fi
  echo "${YELLOW}${branch}${RESET} ${status}"
}

PROMPT='
${MUTED}%n@%m${RESET} %~ $(git_prompt_info)
${CORAL}>${RESET} '

RPROMPT='${MUTED}%*${RESET}'

Love the theme? Check out the full app

Clauder Limiter helps you monitor your Claude API usage with real-time predictions and alerts. Never hit your rate limit unexpectedly again.

Try Clauder Limiter Free