commit
e81ba78c19
@ -0,0 +1,2 @@
|
|||||||
|
# Add your own custom plugins in the custom/plugins directory. Plugins placed
|
||||||
|
# here will override ones with the same name in the main plugins directory.
|
@ -0,0 +1 @@
|
|||||||
|
alias brews='brew list -1'
|
@ -0,0 +1,5 @@
|
|||||||
|
# Open the node api for your current version to the optional section.
|
||||||
|
# TODO: Make the section part easier to use.
|
||||||
|
function node-docs {
|
||||||
|
open "http://nodejs.org/docs/$(node --version)/api/all.html#$1"
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
# Thanks to Christopher Sexton
|
||||||
|
# https://gist.github.com/965032
|
||||||
|
function kapow {
|
||||||
|
touch ~/.pow/$1/tmp/restart.txt
|
||||||
|
if [ $? -eq 0 ]; then
|
||||||
|
echo "$fg[yellow]Pow restarting $1...$reset_color"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
compctl -W ~/.pow -/ kapow
|
@ -1,4 +1,6 @@
|
|||||||
|
# TODO: Make this compatible with rvm.
|
||||||
|
# Run sudo gem on the system ruby, not the active ruby.
|
||||||
alias sgem='sudo gem'
|
alias sgem='sudo gem'
|
||||||
|
|
||||||
# Find ruby file
|
# Find ruby file
|
||||||
alias rfind='find . -name *.rb | xargs grep -n'
|
alias rfind='find . -name *.rb | xargs grep -n'
|
||||||
|
@ -1,3 +1,44 @@
|
|||||||
fpath=($ZSH/plugins/rvm $fpath)
|
alias rubies='rvm list rubies'
|
||||||
autoload -U compinit
|
alias gemsets='rvm gemset list'
|
||||||
compinit -i
|
|
||||||
|
local ruby18='ruby-1.8.7-p334'
|
||||||
|
local ruby19='ruby-1.9.2-p180'
|
||||||
|
|
||||||
|
function rb18 {
|
||||||
|
if [ -z "$1" ]; then
|
||||||
|
rvm use "$ruby18"
|
||||||
|
else
|
||||||
|
rvm use "$ruby18@$1"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
_rb18() {compadd `ls -1 $rvm_path/gems | grep "^$ruby18@" | sed -e "s/^$ruby18@//" | awk '{print $1}'`}
|
||||||
|
compdef _rb18 rb18
|
||||||
|
|
||||||
|
function rb19 {
|
||||||
|
if [ -z "$1" ]; then
|
||||||
|
rvm use "$ruby19"
|
||||||
|
else
|
||||||
|
rvm use "$ruby19@$1"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
_rb19() {compadd `ls -1 $rvm_path/gems | grep "^$ruby19@" | sed -e "s/^$ruby19@//" | awk '{print $1}'`}
|
||||||
|
compdef _rb19 rb19
|
||||||
|
|
||||||
|
function rvm-update {
|
||||||
|
rvm get head
|
||||||
|
rvm reload # TODO: Reload rvm completion?
|
||||||
|
}
|
||||||
|
|
||||||
|
# TODO: Make this usable w/o rvm.
|
||||||
|
function gems {
|
||||||
|
local current_ruby=`rvm-prompt i v p`
|
||||||
|
local current_gemset=`rvm-prompt g`
|
||||||
|
|
||||||
|
gem list $@ | sed \
|
||||||
|
-Ee "s/\([0-9\.]+( .+)?\)/$fg[blue]&$reset_color/g" \
|
||||||
|
-Ee "s|$(echo $rvm_path)|$fg[magenta]\$rvm_path$reset_color|g" \
|
||||||
|
-Ee "s/$current_ruby@global/$fg[yellow]&$reset_color/g" \
|
||||||
|
-Ee "s/$current_ruby$current_gemset$/$fg[green]&$reset_color/g"
|
||||||
|
}
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
#compdef thor
|
||||||
|
#autoload
|
||||||
|
|
||||||
|
compadd `thor list | grep thor | cut -d " " -f 2`
|
@ -0,0 +1,15 @@
|
|||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[white]%}["
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}●%{$reset_color%}"
|
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||||
|
|
||||||
|
#Customized git status, oh-my-zsh currently does not allow render dirty status before branch
|
||||||
|
git_custom_status() {
|
||||||
|
local cb=$(current_branch)
|
||||||
|
if [ -n "$cb" ]; then
|
||||||
|
echo "- $ZSH_THEME_GIT_PROMPT_PREFIX$(current_branch)$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_SUFFIX"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
PROMPT='%2~ $(git_custom_status) »%b '
|
@ -1,29 +0,0 @@
|
|||||||
function prompt_char {
|
|
||||||
git branch >/dev/null 2>/dev/null && echo '±' && return
|
|
||||||
hg root >/dev/null 2>/dev/null && echo '☿' && return
|
|
||||||
echo '○'
|
|
||||||
}
|
|
||||||
|
|
||||||
function virtualenv_info {
|
|
||||||
[ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') '
|
|
||||||
}
|
|
||||||
|
|
||||||
function hg_prompt_info {
|
|
||||||
hg prompt --angle-brackets "\
|
|
||||||
< on %{$fg[magenta]%}<branch>%{$reset_color%}>\
|
|
||||||
< at %{$fg[yellow]%}<tags|%{$reset_color%}, %{$fg[yellow]%}>%{$reset_color%}>\
|
|
||||||
%{$fg[green]%}<status|modified|unknown><update>%{$reset_color%}<
|
|
||||||
patches: <patches|join( → )|pre_applied(%{$fg[yellow]%})|post_applied(%{$reset_color%})|pre_unapplied(%{$fg_bold[black]%})|post_unapplied(%{$reset_color%})>>" 2>/dev/null
|
|
||||||
}
|
|
||||||
|
|
||||||
PROMPT='
|
|
||||||
%{$fg[magenta]%}%n%{$reset_color%} at %{$fg[yellow]%}%m%{$reset_color%} in %{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(hg_prompt_info)$(git_prompt_info)
|
|
||||||
$(virtualenv_info)$(prompt_char) '
|
|
||||||
|
|
||||||
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[magenta]%}"
|
|
||||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}"
|
|
||||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[green]%}!"
|
|
||||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[green]%}?"
|
|
||||||
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
|
||||||
|
|
||||||
. ~/bin/dotfiles/zsh/aliases
|
|
Loading…
Reference in new issue