# Slick Prompt - All Environment Variables
# ==========================================
# Source this file to customize your prompt:
#   source envrc
#
# Or use direnv (https://direnv.net/):
#   echo "source_env" > .envrc && direnv allow
#
# Uncomment and modify the values you want to customize

# ==========================================
# GENERAL SETTINGS
# ==========================================

# Maximum command execution time to display (seconds)
# Default: 5
export SLICK_PROMPT_CMD_MAX_EXEC_TIME=5

# Enable/disable git fetch (1=enable, 0=disable)
# Default: 1
# Disable for faster prompts in large repos or slow networks
export SLICK_PROMPT_GIT_FETCH=1

# Disable showing git user.name in prompt (1=disable, 0=show)
# Default: 0 (show username)
#export SLICK_PROMPT_NO_GIT_UNAME=0

# Compact previous prompt in scrollback (1=enable, 0=disable)
# Default: 1
#export SLICK_PROMPT_TRANSIENT=1

# Cursor shape emitted by slick.zsh via DECSCUSR (\e[Ps q)
# Default: 4 (steady underline)
# Set to an empty string to disable cursor-shape output
# Supported values:
#   0 blinking block
#   1 blinking block (default terminal behavior)
#   2 steady block
#   3 blinking underline
#   4 steady underline
#   5 blinking bar (xterm)
#   6 steady bar (xterm)
#export SLICK_PROMPT_CURSOR_SHAPE=4

# Non-breaking space character
# Default: \u{a0}
#export SLICK_PROMPT_NON_BREAKING_SPACE=" "

# ==========================================
# PROMPT SYMBOLS
# ==========================================

# Main prompt symbol (normal mode)
# Default: $
export SLICK_PROMPT_SYMBOL="❯"

# Vi command mode symbol
# Default: >
export SLICK_PROMPT_VICMD_SYMBOL="❮"

# Root user symbol
# Default: #
export SLICK_PROMPT_ROOT_SYMBOL="#"

# Git remote ahead symbol (commits to push)
# Default: ⇡ (\u{21e1})
export SLICK_PROMPT_GIT_REMOTE_AHEAD="⇡"

# Git remote behind symbol (commits to pull)
# Default: ⇣ (\u{21e3})
export SLICK_PROMPT_GIT_REMOTE_BEHIND="⇣"

# Git authentication failed symbol
# Default: 🔒
export SLICK_PROMPT_GIT_AUTH_SYMBOL="🔒"

# Toolbx marker symbol
# Default: ▣
# Rendered as: (<symbol> <toolbox-name>)
#export SLICK_PROMPT_TOOLBOX_SYMBOL="▣"

# DevPod marker symbol
# Default: 
# Rendered as: (<symbol> <workspace-id>)
#export SLICK_PROMPT_DEVPOD_SYMBOL=""

# AWS and Kubernetes markers are text-only: (aws ...) and (k8s ...)
# There are no symbol variables for these markers.

# ==========================================
# COLORS (256-color palette or named colors)
# ==========================================
# Named colors: black, red, green, yellow, blue, magenta, cyan, white
# Or use numbers: 0-255 from 256-color palette
# See: https://upload.wikimedia.org/wikipedia/commons/1/15/Xterm_256color_chart.svg

# AWS marker color
# Default: 7 (white/gray)
#export SLICK_PROMPT_AWS_COLOR=7

# Error message color
# Default: 196 (bright red)
export SLICK_PROMPT_ERROR_COLOR=196

# DevPod marker color
# Default: 7 (white/gray)
#export SLICK_PROMPT_DEVPOD_COLOR=7

# Kubernetes marker color
# Default: 7 (white/gray)
#export SLICK_PROMPT_K8S_COLOR=7

# Path color
# Default: 74 (cyan/teal)
export SLICK_PROMPT_PATH_COLOR=74

# Python environment color (virtualenv/pyenv)
# Default: 7 (white/gray)
# Preferred over legacy PIPENV_ACTIVE_COLOR
export SLICK_PROMPT_PYTHON_ENV_COLOR=7

# Main symbol color
# Default: 5 (magenta)
export SLICK_PROMPT_SYMBOL_COLOR=magenta

# Vi command mode color
# Default: 3 (yellow)
export SLICK_PROMPT_VICMD_COLOR=yellow

# Root user color
# Default: 1 (red)
export SLICK_PROMPT_ROOT_COLOR=red

# SSH session color
# Default: 8 (gray)
export SLICK_PROMPT_SSH_COLOR=8

# Command execution time color
# Default: 3 (yellow)
export SLICK_PROMPT_TIME_ELAPSED_COLOR=3

# Toolbx marker color
# Default: 3 (yellow)
#export SLICK_PROMPT_TOOLBOX_COLOR=3

# ==========================================
# GIT COLORS
# ==========================================

# Git branch name color
# Default: 3 (yellow)
export SLICK_PROMPT_GIT_BRANCH_COLOR=3

# Git branch prefix symbol
# Default:  (set to "" to disable)
export SLICK_PROMPT_GIT_BRANCH_SYMBOL=$'\ue0a0'

# Git branch prefix symbol color
# Default: 2 (green)
export SLICK_PROMPT_GIT_BRANCH_SYMBOL_COLOR=2

# Git main/master branch color
# Default: 160 (red)
export SLICK_PROMPT_GIT_MAIN_BRANCH_COLOR=160
# Deprecated fallback alias still supported:
#export SLICK_PROMPT_GIT_MASTER_BRANCH_COLOR=160

# Git action color (merge, rebase, etc.)
# Default: 3 (yellow)
export SLICK_PROMPT_GIT_ACTION_COLOR=3

# Git status color (modified, untracked files)
# Default: 5 (magenta)
export SLICK_PROMPT_GIT_STATUS_COLOR=5

# Git staged files color
# Default: 7 (gray/white)
export SLICK_PROMPT_GIT_STAGED_COLOR=7

# Git remote status color (ahead/behind)
# Default: 6 (cyan)
export SLICK_PROMPT_GIT_REMOTE_COLOR=6

# Git user.name color
# Default: 8 (gray)
export SLICK_PROMPT_GIT_UNAME_COLOR=8

# Git authentication failed color
# Default: red
export SLICK_PROMPT_GIT_AUTH_COLOR=red

# ==========================================
# EXAMPLE CONFIGURATIONS
# ==========================================

# Minimal/Fast Configuration (no git fetch, no username)
#export SLICK_PROMPT_GIT_FETCH=0
#export SLICK_PROMPT_NO_GIT_UNAME=1

# Colorful Configuration
#export SLICK_PROMPT_SYMBOL="➜"
#export SLICK_PROMPT_SYMBOL_COLOR=cyan
#export SLICK_PROMPT_PATH_COLOR=blue
#export SLICK_PROMPT_GIT_BRANCH_COLOR=yellow
#export SLICK_PROMPT_ERROR_COLOR=red

# Simple Configuration (basic ASCII symbols)
#export SLICK_PROMPT_SYMBOL=">"
#export SLICK_PROMPT_VICMD_SYMBOL="<"
#export SLICK_PROMPT_GIT_REMOTE_AHEAD="+"
#export SLICK_PROMPT_GIT_REMOTE_BEHIND="-"
#export SLICK_PROMPT_GIT_AUTH_SYMBOL="!"

# Nerd Font Configuration
# Requires a Nerd Font: https://www.nerdfonts.com/
# Popular Nerd Fonts: Monoid Nerd Font, JetBrainsMono, FiraCode, Hack, UbuntuMono
# Example symbols (uncomment to use):
#export SLICK_PROMPT_SYMBOL="❯"         # Simple chevron (works with most fonts)
#export SLICK_PROMPT_VICMD_SYMBOL="❮"    # Simple chevron left
#export SLICK_PROMPT_ROOT_SYMBOL="⚡"     # Lightning bolt
#export SLICK_PROMPT_GIT_AUTH_SYMBOL="🔒"  # Lock symbol
#export SLICK_PROMPT_GIT_REMOTE_AHEAD="⬆"  # Up arrow
#export SLICK_PROMPT_GIT_REMOTE_BEHIND="⬇"  # Down arrow

# Unicode Arrows Configuration (works without special fonts)
#export SLICK_PROMPT_SYMBOL="→"      # U+2192
#export SLICK_PROMPT_VICMD_SYMBOL="←"  # U+2190
#export SLICK_PROMPT_GIT_REMOTE_AHEAD="↑"  # U+2191
#export SLICK_PROMPT_GIT_REMOTE_BEHIND="↓"  # U+2193

# Emoji Configuration
#export SLICK_PROMPT_SYMBOL="🚀"
#export SLICK_PROMPT_VICMD_SYMBOL="🔙"
#export SLICK_PROMPT_ROOT_SYMBOL="👑"
#export SLICK_PROMPT_GIT_AUTH_SYMBOL="🔐"
#export SLICK_PROMPT_TOOLBOX_SYMBOL="▣"
#export SLICK_PROMPT_DEVPOD_SYMBOL="🧪"
