Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.80 KB | None | 0 0
  1. # Path to your oh-my-zsh installation.
  2. export ZSH=/Users/dineshb/.oh-my-zsh
  3. # DEFAULT_USER=Dinesh
  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.  
  9. ZSH_THEME="agnoster"
  10. #ZSH_THEME="ys"
  11. # Uncomment the following line to use case-sensitive completion.
  12. # CASE_SENSITIVE="true"
  13.  
  14. # Uncomment the following line to use hyphen-insensitive completion. Case
  15. # sensitive completion must be off. _ and - will be interchangeable.
  16. # HYPHEN_INSENSITIVE="true"
  17.  
  18. # Uncomment the following line to disable bi-weekly auto-update checks.
  19. # DISABLE_AUTO_UPDATE="true"
  20.  
  21. # Uncomment the following line to change how often to auto-update (in days).
  22. # export UPDATE_ZSH_DAYS=13
  23.  
  24. # Uncomment the following line to disable colors in ls.
  25. # DISABLE_LS_COLORS="true"
  26.  
  27. # Uncomment the following line to disable auto-setting terminal title.
  28. # DISABLE_AUTO_TITLE="true"
  29.  
  30. # Uncomment the following line to enable command auto-correction.
  31. # ENABLE_CORRECTION="true"
  32.  
  33. # Uncomment the following line to display red dots whilst waiting for completion.
  34. # COMPLETION_WAITING_DOTS="true"
  35.  
  36. # Uncomment the following line if you want to disable marking untracked files
  37. # under VCS as dirty. This makes repository status check for large repositories
  38. # much, much faster.
  39. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  40.  
  41. # Uncomment the following line if you want to change the command execution time
  42. # stamp shown in the history command output.
  43. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  44. # HIST_STAMPS="mm/dd/yyyy"
  45.  
  46. # Would you like to use another custom folder than $ZSH/custom?
  47. # ZSH_CUSTOM=/path/to/new-custom-folder
  48.  
  49. # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
  50. # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
  51. # Example format: plugins=(rails git textmate ruby lighthouse)
  52. # Add wisely, as too many plugins slow down shell startup.
  53. plugins=(git)
  54.  
  55. # User configuration
  56.  
  57. export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/sbin"
  58. # export MANPATH="/usr/local/man:$MANPATH"
  59.  
  60. source $ZSH/oh-my-zsh.sh
  61.  
  62. # You may need to manually set your language environment
  63. # export LANG=en_US.UTF-8
  64.  
  65. # Preferred editor for local and remote sessions
  66. # if [[ -n $SSH_CONNECTION ]]; then
  67. # export EDITOR='vim'
  68. # else
  69. # export EDITOR='mvim'
  70. # fi
  71.  
  72. # Compilation flags
  73. # export ARCHFLAGS="-arch x86_64"
  74.  
  75. # ssh
  76. # export SSH_KEY_PATH="~/.ssh/dsa_id"
  77.  
  78. export JAVA_HOME="$(/usr/libexec/java_home -v 1.8)"
  79. alias gst="git status"
  80. alias gap="git add -p"
  81. alias gco="git checkout"
  82. alias glog="git lg"
  83. alias glogo="git lg"
  84. alias gcom="gco master"
  85. alias gpr="git pull --rebase"
  86. alias gp="git push"
  87. alias gsl="git stash list"
  88. alias gsa="git stash apply"
  89. alias game="git commit --amend"
  90. alias gameo="git commit --amend --no-edit"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement