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.

38 lines
903 B

2 years ago
4 months ago
2 years ago
4 months ago
4 months ago
2 years ago
4 months ago
2 years ago
4 months ago
4 months ago
4 months ago
2 years ago
4 months ago
2 years ago
4 months ago
  1. autoload -Uz compinit
  2. compinit
  3. HISTFILE="$HOME/.zsh_history"
  4. HISTSIZE=10000
  5. SAVEHIST=10000
  6. bindkey -e
  7. export PATH="/usr/local/ubin:$HOME/bin:$HOME/go/bin:$HOME/.cargo/bin:$PATH"
  8. export EDITOR="vim"
  9. export TERMINAL="konsole"
  10. export TERM="konsole"
  11. export BROWSER="firefox"
  12. export VIDEO="mpv"
  13. export OPENER="xdg-open"
  14. export ZDOTDIR="$HOME/.config/zsh"
  15. source "$ZDOTDIR/functions"
  16. zsh_add_config keybinds.zsh
  17. export PURE_PROMPT_SYMBOL="$"
  18. if [ "$USER" = "root" ]; then
  19. export PURE_PROMPT_SYMBOL="#"
  20. fi
  21. export PROMPT_PURE_SSH_CONNECTION=YES
  22. zsh_fpath_plugin sindresorhus/pure
  23. autoload -U promptinit; promptinit
  24. zstyle :prompt:pure:user color cyan
  25. zstyle :prompt:pure:host color white
  26. zstyle ':prompt:pure:prompt:*' color white
  27. prompt pure
  28. zsh_add_plugin zdharma-continuum/fast-syntax-highlighting
  29. ZSH_AUTOSUGGEST_STRATEGY=(history completion)
  30. zsh_add_plugin zsh-users/zsh-autosuggestions
  31. fastfetch