Guest User

Untitled

a guest
Jan 23rd, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. # Lines configured by zsh-newuser-install
  2. HISTFILE=~/.histfile
  3. HISTSIZE=1000
  4. SAVEHIST=1000
  5. bindkey -e
  6. # End of lines configured by zsh-newuser-install
  7. # The following lines were added by compinstall
  8. zstyle :compinstall filename '/Users/Alex/.zshrc'
  9.  
  10. autoload -Uz compinit
  11. compinit
  12. # End of lines added by compinstall
  13.  
  14. # Path to your oh-my-zsh configuration.
  15. export ZSH=$HOME/.oh-my-zsh
  16.  
  17. # Set to the name theme to load.
  18. # Look in ~/.oh-my-zsh/themes/
  19. export ZSH_THEME="andrewsardone"
  20.  
  21. # Set to this to use case-sensitive completion
  22. # export CASE_SENSITIVE="true"
  23.  
  24. source $ZSH/oh-my-zsh.sh
  25.  
  26. # Customize to your needs...
  27. source /usr/local/Cellar/autojump/16/etc/autojump.zsh
  28. # Change Python.framework to EPD64.framework to get back 64-bit python
  29. export PATH=/usr/local/bin:/usr/bin:/usr/local/bin:/usr/local/sbin:$PATH
  30. export PYTHONPATH=/usr/local/lib/python2.7/site-packages:/usr/local/lib/python2.7:$PYTHONPATH
  31.  
  32. alias ls="ls -hG"
  33. alias em="emacsclient -nw"
  34.  
  35. # rvm
  36.  
  37. if [[ $TERM = "eterm-color" ]]; then
  38. export TERM="xterm"
  39. fi
  40.  
  41. alias ga="git add"
  42. alias gc="git commit"
  43. alias gl="git lg"
  44. alias gb="git branch"
  45. alias gs="git status"
  46. alias gu="git unstage"
  47.  
  48. # History
  49. bindkey ^p up-line-or-history #history-incremental-search-backward
  50.  
  51. # Xcode convenience function
  52. function xcode() {
  53. if (( $# == 0 )); then
  54. open *.xcodeproj
  55. return
  56. fi
  57. open -a Xcode.app $1
  58. }
  59.  
  60. # Preview man function
  61. pman () {
  62. man -t "${1}" | open -f -a /Applications/Preview.app
  63. }
Add Comment
Please, Sign In to add comment