Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
beb980d3
Commit
beb980d3
authored
Jan 10, 2011
by
SuprDewd
Browse files
Merge branch 'master' of
git://github.com/robbyrussell/oh-my-zsh
parents
bcc235e1
7a9cc198
Changes
4
Show whitespace changes
Inline
Side-by-side
lib/directories.zsh
View file @
beb980d3
...
...
@@ -36,5 +36,9 @@ cd () {
alias
md
=
'mkdir -p'
alias
rd
=
rmdir
alias
d
=
'dirs -v'
# mkdir & cd to it
function
mcd
()
{
mkdir
-p
"
$1
"
&&
cd
"
$1
"
;
}
\ No newline at end of file
plugins/git/git.plugin.zsh
View file @
beb980d3
...
...
@@ -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() {
echo
${
ref
#refs/heads/
}
}
# these aliases take advan
gat
e of the previous function
# these aliases take advan
tag
e 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)'
plugins/rails3/rails3.plugin.zsh
0 → 100644
View file @
beb980d3
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'
themes/fishy.zsh-theme
0 → 100644
View file @
beb980d3
# 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%}"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment