Advertisement
Guest User

Untitled

a guest
Jan 29th, 2016
465
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. # Path to your oh-my-zsh configuration.
  2. ZSH=$HOME/.oh-my-zsh
  3.  
  4. # Set name of the theme to load.
  5. # Look in ~/.oh-my-zsh/themes/
  6. # Optionally, if you set this to "random", it'll load a random theme each
  7. # time that oh-my-zsh is loaded.
  8. # ZSH_THEME="robbyrussell"
  9. ZSH_THEME="agnoster"
  10.  
  11. # Example aliases
  12. # alias zshconfig="mate ~/.zshrc"
  13. # alias ohmyzsh="mate ~/.oh-my-zsh"
  14.  
  15. # Set to this to use case-sensitive completion
  16. # CASE_SENSITIVE="true"
  17.  
  18. # Comment this out to disable weekly auto-update checks
  19. # DISABLE_AUTO_UPDATE="true"
  20.  
  21. # Uncomment following line if you want to disable colors in ls
  22. # DISABLE_LS_COLORS="true"
  23.  
  24. # Uncomment following line if you want to disable autosetting terminal title.
  25. # DISABLE_AUTO_TITLE="true"
  26.  
  27. # Uncomment following line if you want red dots to be displayed while waiting for completion
  28. # COMPLETION_WAITING_DOTS="true"
  29.  
  30. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  31. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  32. # Example format: plugins=(rails git textmate ruby lighthouse)
  33. plugins=(git)
  34.  
  35. alias st='/usr/bin/sublime-text'
  36.  
  37. source $ZSH/oh-my-zsh.sh
  38.  
  39. # Customize to your needs...
  40. export PATH=/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
  41.  
  42. # optionally set DEFAULT_USER in ~/.zshrc to your regular username to hide the “user@hostname” info when you’re logged in as yourself on your local machine.
  43. # Context: user@hostname (who am I and where am I)
  44. export USER='%m'
  45. prompt_context() {
  46. if [[ "$USER" != "$DEFAULT_USER" || -n "$SSH_CLIENT" ]]; then
  47. prompt_segment black default "%(!.%{%F{yellow}%}.)"
  48. fi
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement