Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. export ZPLUG_HOME=$HOME/.zplug
  2. source $ZPLUG_HOME/init.zsh
  3.  
  4. zmodload zsh/zprof
  5.  
  6. zplug "zplug/zplug"
  7.  
  8. # Prezto framework
  9. zplug "sorin-ionescu/prezto", \
  10. use:"init.zsh", \
  11. hook-build:"ln -s $ZPLUG_HOME/repos/sorin-ionescu/prezto ~/.zprezto"
  12.  
  13. zstyle ':prezto:*:*' color 'yes'
  14. zstyle ':prezto:load' pmodule \
  15. 'environment' \
  16. 'terminal' \
  17. 'editor' \
  18. 'history' \
  19. 'directory' \
  20. 'utility' \
  21. 'completion' \
  22. 'prompt' \
  23. 'python' \
  24. 'fasd' \
  25. 'tmux'
  26.  
  27. zstyle ':prezto:module:editor' key-bindings 'vi'
  28. zstyle ':prezto:module:prompt' theme 'pure'
  29. PURE_PROMPT_SYMBOL='🐒 '
  30.  
  31. # Custom zsh configuration
  32. zplug "~/.zsh", \
  33. use:"*.zsh", \
  34. from:local
  35.  
  36. zplug load
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement