Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.41 KB | None | 0 0
  1. export ZSH="/home/prototype/.oh-my-zsh"
  2.  
  3. ZSH_THEME="powerlevel9k/powerlevel9k"
  4. POWERLEVEL9K_MODE='awesome-patched'
  5.  
  6. plugins=(
  7. command-not-found
  8. common-aliases
  9. git
  10. ng
  11. npm
  12. pip
  13. python
  14. sudo
  15. vscode
  16. zsh-autosuggestions
  17. )
  18.  
  19. source $ZSH/oh-my-zsh.sh
  20.  
  21. source /home/prototype/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
  22. export LC_ALL=en_US.UTF-8
  23. export LANG=en_US.UTF-8
  24.  
  25. POWERLEVEL9K_FOLDER_ICON="$(print_icon "FOLDER_ICON")"
  26. POWERLEVEL9K_HOME_SUB_ICON="$(print_icon "HOME_ICON")"
  27. POWERLEVEL9K_DIR_PATH_SEPARATOR=" $(print_icon "LEFT_SUBSEGMENT_SEPARATOR") "
  28. POWERLEVEL9K_PYTHON_ICON=""
  29. POWERLEVEL9K_PROMPT_ON_NEWLINE=true
  30.  
  31. POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(root_indicator context dir vcs dir_writable)
  32. POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status command_execution_time time)
  33.  
  34. POWERLEVEL9K_COMMAND_EXECUTION_TIME_THRESHOLD=0
  35. POWERLEVEL9K_CONTEXT_TEMPLATE="%n"
  36. POWERLEVEL9K_DIR_OMIT_FIRST_CHARACTER=true
  37.  
  38.  
  39. POWERLEVEL9K_COMMAND_EXECUTION_TIME_BACKGROUND='245'
  40. POWERLEVEL9K_COMMAND_EXECUTION_TIME_FOREGROUND='black'
  41. POWERLEVEL9K_VIRTUALENV_BACKGROUND=107
  42. POWERLEVEL9K_VIRTUALENV_FOREGROUND='white'
  43. HYPHEN_INSENSITIVE="true"
  44. COMPLETION_WAITING_DOTS="true"
  45. source /home/prototype/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
  46. source /home/prototype/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement