-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.zshrc
More file actions
24 lines (19 loc) · 798 Bytes
/
example.zshrc
File metadata and controls
24 lines (19 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Example .zshrc configuration for gitBash
# Copy the lines below to your actual ~/.zshrc file
# ========================================
# gitBash - Git Repository Initializer
# ========================================
# Source the gitBash initialization script
# This adds the 'git-init-repo' and 'gir' commands
if [ -f "$HOME/gitBash/init.sh" ]; then
source "$HOME/gitBash/init.sh"
fi
# Optional: Set OpenAI API key for AI-assisted catalogue metadata
# export OPENAI_API_KEY="your-api-key-here"
# export OPENAI_MODEL="gpt-4o-mini" # Optional, defaults to gpt-4o-mini
# ========================================
# After adding these lines to your .zshrc:
# 1. Save the file
# 2. Run: source ~/.zshrc
# 3. Use the commands: git-init-repo or gir
# ========================================