You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
771B

  1. # History in cache directory:
  2. HISTSIZE=10000
  3. SAVEHIST=10000
  4. HISTFILE=~/.cache/zsh/history
  5. export ZSH="/usr/share/oh-my-zsh" # make this into template
  6. # ZSH settings
  7. HYPHEN_INSENSITIVE="true"
  8. ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=8'
  9. HIST_STAMPS="yyyy-mm-dd"
  10. ZSH_CUSTOM="$HOME/.config/zsh"
  11. DISABLE_AUTO_UPDATE="true"
  12. plugins=(
  13. archlinux
  14. ansible
  15. golang
  16. pass
  17. zsh-interactive-cd
  18. #fzf
  19. systemd
  20. ssh-agent
  21. httpie
  22. colorize
  23. cp # adds cpv command for using rsync like cp for local dirs
  24. direnv
  25. extract # adds x command to extract any archive
  26. git # git aliases for the cli
  27. #git-prompt
  28. python
  29. virtualenvwrapper
  30. ufw
  31. zsh-autosuggestions
  32. zsh-syntax-highlighting
  33. history-substring-search
  34. )
  35. # zsh completions
  36. autoload -U compinit && compinit
  37. source $ZSH/oh-my-zsh.sh