Browse Source

Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh

master
SuprDewd 14 years ago
parent
commit
f26e1c327a
  1. 6
      lib/directories.zsh
  2. 5
      plugins/git/git.plugin.zsh
  3. 8
      plugins/rails3/rails3.plugin.zsh
  4. 9
      themes/fishy.zsh-theme

6
lib/directories.zsh

@ -36,5 +36,9 @@ cd () { @@ -36,5 +36,9 @@ cd () {
alias md='mkdir -p'
alias rd=rmdir
alias d='dirs -v'
alias d='dirs -v'
# mkdir & cd to it
function mcd() {
mkdir -p "$1" && cd "$1";
}

5
plugins/git/git.plugin.zsh

@ -8,6 +8,7 @@ alias gd='git diff | mate' @@ -8,6 +8,7 @@ alias gd='git diff | mate'
alias gdv='git diff -w "$@" | vim -R -'
alias gc='git commit -v'
alias gca='git commit -v -a'
alias gco='git checkout'
alias gb='git branch'
alias gba='git branch -a'
alias gcount='git shortlog -sn'
@ -26,7 +27,7 @@ function current_branch() { @@ -26,7 +27,7 @@ function current_branch() {
echo ${ref#refs/heads/}
}
# these aliases take advangate of the previous function
# these aliases take advantage of the previous function
alias ggpull='git pull origin $(current_branch)'
alias ggpush='git push origin $(current_branch)'
alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)'
alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)'

8
plugins/rails3/rails3.plugin.zsh

@ -0,0 +1,8 @@ @@ -0,0 +1,8 @@
alias rs='ruby script/rails server'
alias rg='ruby script/rails generate'
alias rd='ruby script/rails destroy'
alias rp='ruby script/rails plugin'
alias rdbm='rake db:migrate db:test:clone'
alias rc='ruby script/rails console'
alias rd='ruby script/rais server --debugger'
alias devlog='tail -f log/development.log'

9
themes/fishy.zsh-theme

@ -0,0 +1,9 @@ @@ -0,0 +1,9 @@
# ZSH Theme emulating the Fish shell's default prompt.
local user_color='green'; [ $UID -eq 0 ] && user_color='red'
PROMPT='%n@%m %{$fg[$user_color]%}%~%{$reset_color%}%(!.#.>) '
PROMPT2='%{$fg[red]%}\ %{$reset_color%}'
RPS1='%(?..%{$fg[red]%}%? ↵%{$reset_color%})$(git_prompt_info)'
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[cyan]%}"
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
Loading…
Cancel
Save