Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. # If you come from bash you might have to change your $PATH.
  2. # export PATH=$HOME/bin:/usr/local/bin:$PATH
  3.  
  4. # Path to your oh-my-zsh installation.
  5. ZSH=/usr/share/oh-my-zsh/
  6.  
  7. source $ZSH/oh-my-zsh.sh
  8. source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
  9. source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.plugin.zsh
  10. source ~/.config/zsh/main.zsh
  11. source ~/.config/zsh/autostart.zsh
  12. source ~/.config/zsh/aliases.zsh
  13. source ~/.config/zsh/bullet-train.zsh
  14. source ~/.config/zsh/powerlevel9k.zsh
  15.  
  16. # Set up Node Version Manager
  17. source /usr/share/nvm/init-nvm.sh
  18.  
  19. # Use Composer binaries && Ruby gems
  20. export PATH=$PATH:~/.config/composer/vendor/bin:~/.gem/ruby/2.5.0/bin:~/.yarn/bin:/opt/glassfish4/bin:~/.local/bin:
  21. export GEM_HOME=$HOME/.gem
  22.  
  23. # Virtualenv
  24. source ~/.local/bin/virtualenvwrapper_lazy.sh
  25.  
  26. [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh
  27.  
  28. source /usr/share/zsh-theme-powerlevel9k/powerlevel9k.zsh-theme
  29.  
  30. # The next line updates PATH for the Google Cloud SDK.
  31. if [ -f '/home/archie/Downloads/google-cloud-sdk/path.zsh.inc' ]; then . '/home/archie/Downloads/google-cloud-sdk/path.zsh.inc'; fi
  32.  
  33. # The next line enables shell command completion for gcloud.
  34. if [ -f '/home/archie/Downloads/google-cloud-sdk/completion.zsh.inc' ]; then . '/home/archie/Downloads/google-cloud-sdk/completion.zsh.inc'; fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement