Guest User

.zshrc

a guest
Jul 18th, 2026
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.51 KB | Source Code | 0 0
  1. # Increase in-memory and on-disk history
  2. HISTSIZE=100000
  3. SAVEHIST=100000
  4.  
  5. # Record timestamps, skip search duplicates, ignore consecutive duplicates,
  6. # append when finished
  7. setopt EXTENDED_HISTORY HIST_FIND_NO_DUPS HIST_IGNORE_DUPS INC_APPEND_HISTORY_TIME
  8.  
  9. # Disable XON/XOFF to enable Ctrl-S forward search
  10. stty -ixon
  11.  
  12. # Add keg-only Homebrew formulas to PATH
  13. export PATH="/opt/homebrew/opt/curl/bin:/opt/homebrew/opt/ruby/bin:$PATH"
  14.  
  15. # Unload LLMs after each response to free RAM
  16. export OLLAMA_KEEP_ALIVE=0
  17.  
Advertisement
Add Comment
Please, Sign In to add comment