Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. # Path to my oh-my-zsh installation.
  2.  
  3. export ZSH=$HOME/.oh-my-zsh
  4.  
  5. # Set name of the theme to load.
  6.  
  7. ZSH_THEME="robbyrussell"
  8.  
  9. ENABLE_CORRECTION="false"
  10.  
  11. plugins=(git)
  12.  
  13. source $ZSH/oh-my-zsh.sh
  14.  
  15. # User configuration
  16.  
  17. export
  18.  
  19. PATH="/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/bin/vendor_perl:/usr/bin/core_perl"
  20. export MANPATH="/usr/local/man:$MANPATH"
  21.  
  22. # Preferred editor for local and remote sessions
  23.  
  24. if [[ -n $SSH_CONNECTION ]]; then
  25.  
  26. export EDITOR='vim'
  27.  
  28. else
  29.  
  30. export EDITOR='mvim'
  31.  
  32. fi
  33.  
  34. # ssh
  35.  
  36. export SSH_KEY_PATH="~/.ssh/sa_id"
  37.  
  38. source ~/dotfiles/aliases
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement