mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-13 17:30:08 +00:00
Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh
This commit is contained in:
commit
beb980d370
4 changed files with 25 additions and 3 deletions
|
@ -36,5 +36,9 @@ cd () {
|
||||||
|
|
||||||
alias md='mkdir -p'
|
alias md='mkdir -p'
|
||||||
alias rd=rmdir
|
alias rd=rmdir
|
||||||
|
alias d='dirs -v'
|
||||||
|
|
||||||
alias d='dirs -v'
|
# mkdir & cd to it
|
||||||
|
function mcd() {
|
||||||
|
mkdir -p "$1" && cd "$1";
|
||||||
|
}
|
|
@ -8,6 +8,7 @@ alias gd='git diff | mate'
|
||||||
alias gdv='git diff -w "$@" | vim -R -'
|
alias gdv='git diff -w "$@" | vim -R -'
|
||||||
alias gc='git commit -v'
|
alias gc='git commit -v'
|
||||||
alias gca='git commit -v -a'
|
alias gca='git commit -v -a'
|
||||||
|
alias gco='git checkout'
|
||||||
alias gb='git branch'
|
alias gb='git branch'
|
||||||
alias gba='git branch -a'
|
alias gba='git branch -a'
|
||||||
alias gcount='git shortlog -sn'
|
alias gcount='git shortlog -sn'
|
||||||
|
@ -26,7 +27,7 @@ function current_branch() {
|
||||||
echo ${ref#refs/heads/}
|
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 ggpull='git pull origin $(current_branch)'
|
||||||
alias ggpush='git push 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
Normal file
8
plugins/rails3/rails3.plugin.zsh
Normal file
|
@ -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
Normal file
9
themes/fishy.zsh-theme
Normal file
|
@ -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…
Reference in a new issue