Advertisement
Guest User

Untitled

a guest
Dec 29th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. 1 autoload -Uz compinit promptinit
  2. 2 compinit
  3. 3 promptinit
  4. 4 export ZSH=$HOME/.config/zsh
  5. 5 ZSH_THEME="robbyrussel"
  6. 6
  7. 7 HISTFILE=~/.zsh_history
  8. 8
  9. 9 autoload -U colors
  10. 10 colors
  11. 11
  12. 12 autoload -Uz up-line-or-beginning-search down-line-or-beginning-search
  13. 13 zle -N up-line-or-beginning-search
  14. 14 zle -N down-line-or-beginning-search
  15. 15
  16. 16 [[ -n "$key[Up]" ]] && bindkey -- "$key[Up]" up-line-or-beginning-search
  17. 17 [[ -n "$key[Down]" ]] && bindkey -- "$key[Down]" down-line-or-beginning-search
  18. 18
  19. 19 bindkey "^[[3~" delete-char
  20. 20 bindkey "^[3;5~" delete-char
  21. 21
  22. 22 autoload -Uz promptinit
  23. 23 promptinit
  24. 24
  25. 25 # This will set the default prompt to the walters theme
  26. 26 prompt adam1
  27. 27 if [[ $TERM == xterm-termite ]]; then
  28. 28 . /etc/profile.d/vte.sh
  29. 29 __vte_osc7
  30. 30 fi
  31. 31
  32. 32 export WINEARCH=win64
  33. 33 export EDITOR=/usr/bin/nvim
  34. 34 export VISUAL=/usr/bin/nvim
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement