commit
0ba398f9e1
105 changed files with 4084 additions and 272 deletions
@ -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,3 @@ |
|||||||
|
autoload -U edit-command-line |
||||||
|
zle -N edit-command-line |
||||||
|
bindkey '\C-x\C-e' edit-command-line |
||||||
@ -1,26 +1,51 @@ |
|||||||
|
# Check for updates on initial load... |
||||||
|
if [ "$DISABLE_AUTO_UPDATE" != "true" ] |
||||||
|
then |
||||||
|
/usr/bin/env zsh $ZSH/tools/check_for_upgrade.sh |
||||||
|
fi |
||||||
|
|
||||||
# Initializes Oh My Zsh |
# Initializes Oh My Zsh |
||||||
|
|
||||||
# add a function path |
# add a function path |
||||||
fpath=($ZSH/functions $fpath) |
fpath=($ZSH/functions $ZSH/completions $fpath) |
||||||
|
|
||||||
# Load all of the config files in ~/oh-my-zsh that end in .zsh |
# Load all of the config files in ~/oh-my-zsh that end in .zsh |
||||||
# TIP: Add files you don't want in git to .gitignore |
# TIP: Add files you don't want in git to .gitignore |
||||||
for config_file ($ZSH/lib/*.zsh) source $config_file |
for config_file ($ZSH/lib/*.zsh) source $config_file |
||||||
|
|
||||||
# Load all of your custom configurations from custom/ |
# Add all defined plugins to fpath |
||||||
for config_file ($ZSH/custom/*.zsh) source $config_file |
plugin=${plugin:=()} |
||||||
|
for plugin ($plugins) fpath=($ZSH/plugins/$plugin $fpath) |
||||||
|
|
||||||
|
# Load and run compinit |
||||||
|
autoload -U compinit |
||||||
|
compinit -i |
||||||
|
|
||||||
# Load all of the plugins that were defined in ~/.zshrc |
# Load all of the plugins that were defined in ~/.zshrc |
||||||
plugin=${plugin:=()} |
for plugin ($plugins); do |
||||||
for plugin ($plugins) source $ZSH/plugins/$plugin/$plugin.plugin.zsh |
if [ -f $ZSH/custom/plugins/$plugin/$plugin.plugin.zsh ]; then |
||||||
|
source $ZSH/custom/plugins/$plugin/$plugin.plugin.zsh |
||||||
|
elif [ -f $ZSH/plugins/$plugin/$plugin.plugin.zsh ]; then |
||||||
|
source $ZSH/plugins/$plugin/$plugin.plugin.zsh |
||||||
|
fi |
||||||
|
done |
||||||
|
|
||||||
# Load the theme |
# Load all of your custom configurations from custom/ |
||||||
source "$ZSH/themes/$ZSH_THEME.zsh-theme" |
for config_file ($ZSH/custom/*.zsh) source $config_file |
||||||
|
|
||||||
# Check for updates on initial load... |
# Load the theme |
||||||
if [ "$DISABLE_AUTO_UPDATE" = "true" ] |
if [ "$ZSH_THEME" = "random" ] |
||||||
then |
then |
||||||
return |
themes=($ZSH/themes/*zsh-theme) |
||||||
|
N=${#themes[@]} |
||||||
|
((N=(RANDOM%N)+1)) |
||||||
|
RANDOM_THEME=${themes[$N]} |
||||||
|
source "$RANDOM_THEME" |
||||||
|
echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..." |
||||||
else |
else |
||||||
/usr/bin/env zsh $ZSH/tools/check_for_upgrade.sh |
if [ ! "$ZSH_THEME" = "" ] |
||||||
|
then |
||||||
|
source "$ZSH/themes/$ZSH_THEME.zsh-theme" |
||||||
fi |
fi |
||||||
|
fi |
||||||
|
|
||||||
|
|||||||
@ -0,0 +1,26 @@ |
|||||||
|
stat -f%m . > /dev/null 2>&1 |
||||||
|
if [ "$?" = 0 ]; then |
||||||
|
stat_cmd=(stat -f%m) |
||||||
|
else |
||||||
|
stat_cmd=(stat -L --format=%Y) |
||||||
|
fi |
||||||
|
|
||||||
|
_ant_does_target_list_need_generating () { |
||||||
|
if [ ! -f .ant_targets ]; then return 0; |
||||||
|
else |
||||||
|
accurate=$($stat_cmd .ant_targets) |
||||||
|
changed=$($stat_cmd build.xml) |
||||||
|
return $(expr $accurate '>=' $changed) |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
_ant () { |
||||||
|
if [ -f build.xml ]; then |
||||||
|
if _ant_does_target_list_need_generating; then |
||||||
|
sed -n '/<target/s/<target.*name="\([^"]*\).*$/\1/p' build.xml > .ant_targets |
||||||
|
fi |
||||||
|
compadd `cat .ant_targets` |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
compdef _ant ant |
||||||
@ -0,0 +1,6 @@ |
|||||||
|
# commands to control local apache2 server installation |
||||||
|
# paths are for osx installation via macports |
||||||
|
|
||||||
|
alias apache2start='sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper start' |
||||||
|
alias apache2stop='sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper stop' |
||||||
|
alias apache2restart='sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper restart' |
||||||
@ -0,0 +1,76 @@ |
|||||||
|
# Archlinux zsh aliases and functions |
||||||
|
# Usage is also described at https://github.com/robbyrussell/oh-my-zsh/wiki/Plugins |
||||||
|
|
||||||
|
# Look for yaourt, and add some useful functions if we have it. |
||||||
|
if [[ -x `which yaourt` ]]; then |
||||||
|
upgrade () { |
||||||
|
yaourt -Syu |
||||||
|
} |
||||||
|
alias yaconf='yaourt -C' # Fix all configuration files with vimdiff |
||||||
|
# Pacman - https://wiki.archlinux.org/index.php/Pacman_Tips |
||||||
|
alias yaupg='yaourt -Syu' # Synchronize with repositories before upgrading packages that are out of date on the local system. |
||||||
|
alias yain='yaourt -S' # Install specific package(s) from the repositories |
||||||
|
alias yains='yaourt -U' # Install specific package not from the repositories but from a file |
||||||
|
alias yare='yaourt -R' # Remove the specified package(s), retaining its configuration(s) and required dependencies |
||||||
|
alias yarem='yaourt -Rns' # Remove the specified package(s), its configuration(s) and unneeded dependencies |
||||||
|
alias yarep='yaourt -Si' # Display information about a given package in the repositories |
||||||
|
alias yareps='yaourt -Ss' # Search for package(s) in the repositories |
||||||
|
alias yaloc='yaourt -Qi' # Display information about a given package in the local database |
||||||
|
alias yalocs='yaourt -Qs' # Search for package(s) in the local database |
||||||
|
# Additional yaourt alias examples |
||||||
|
if [[ -x `which abs` ]]; then |
||||||
|
alias yaupd='yaourt -Sy && sudo abs' # Update and refresh the local package and ABS databases against repositories |
||||||
|
else |
||||||
|
alias yaupd='yaourt -Sy' # Update and refresh the local package and ABS databases against repositories |
||||||
|
fi |
||||||
|
alias yainsd='yaourt -S --asdeps' # Install given package(s) as dependencies of another package |
||||||
|
alias yamir='yaourt -Syy' # Force refresh of all package lists after updating /etc/pacman.d/mirrorlist |
||||||
|
else |
||||||
|
upgrade() { |
||||||
|
sudo pacman -Syu |
||||||
|
} |
||||||
|
fi |
||||||
|
|
||||||
|
# Pacman - https://wiki.archlinux.org/index.php/Pacman_Tips |
||||||
|
alias pacupg='sudo pacman -Syu' # Synchronize with repositories before upgrading packages that are out of date on the local system. |
||||||
|
alias pacin='sudo pacman -S' # Install specific package(s) from the repositories |
||||||
|
alias pacins='sudo pacman -U' # Install specific package not from the repositories but from a file |
||||||
|
alias pacre='sudo pacman -R' # Remove the specified package(s), retaining its configuration(s) and required dependencies |
||||||
|
alias pacrem='sudo pacman -Rns' # Remove the specified package(s), its configuration(s) and unneeded dependencies |
||||||
|
alias pacrep='pacman -Si' # Display information about a given package in the repositories |
||||||
|
alias pacreps='pacman -Ss' # Search for package(s) in the repositories |
||||||
|
alias pacloc='pacman -Qi' # Display information about a given package in the local database |
||||||
|
alias paclocs='pacman -Qs' # Search for package(s) in the local database |
||||||
|
# Additional pacman alias examples |
||||||
|
if [[ -x `which abs` ]]; then |
||||||
|
alias pacupd='sudo pacman -Sy && sudo abs' # Update and refresh the local package and ABS databases against repositories |
||||||
|
else |
||||||
|
alias pacupd='sudo pacman -Sy' # Update and refresh the local package and ABS databases against repositories |
||||||
|
fi |
||||||
|
alias pacinsd='sudo pacman -S --asdeps' # Install given package(s) as dependencies of another package |
||||||
|
alias pacmir='sudo pacman -Syy' # Force refresh of all package lists after updating /etc/pacman.d/mirrorlist |
||||||
|
|
||||||
|
# https://bbs.archlinux.org/viewtopic.php?id=93683 |
||||||
|
paclist() { |
||||||
|
sudo pacman -Qei $(pacman -Qu|cut -d" " -f 1)|awk ' BEGIN {FS=":"}/^Name/{printf("\033[1;36m%s\033[1;37m", $2)}/^Description/{print $2}' |
||||||
|
} |
||||||
|
|
||||||
|
alias paclsorphans='sudo pacman -Qdt' |
||||||
|
alias pacrmorphans='sudo pacman -Rs $(pacman -Qtdq)' |
||||||
|
|
||||||
|
pacdisowned() { |
||||||
|
tmp=${TMPDIR-/tmp}/pacman-disowned-$UID-$$ |
||||||
|
db=$tmp/db |
||||||
|
fs=$tmp/fs |
||||||
|
|
||||||
|
mkdir "$tmp" |
||||||
|
trap 'rm -rf "$tmp"' EXIT |
||||||
|
|
||||||
|
pacman -Qlq | sort -u > "$db" |
||||||
|
|
||||||
|
find /bin /etc /lib /sbin /usr \ |
||||||
|
! -name lost+found \ |
||||||
|
\( -type d -printf '%p/\n' -o -print \) | sort > "$fs" |
||||||
|
|
||||||
|
comm -23 "$fs" "$db" |
||||||
|
} |
||||||
@ -0,0 +1,3 @@ |
|||||||
|
if [ -f `brew --prefix`/etc/autojump ]; then |
||||||
|
. `brew --prefix`/etc/autojump |
||||||
|
fi |
||||||
@ -1,4 +1 @@ |
|||||||
# add brew completion function to path |
alias brews='brew list -1' |
||||||
fpath=($ZSH/plugins/brew $fpath) |
|
||||||
autoload -U compinit |
|
||||||
compinit -i |
|
||||||
|
|||||||
@ -1,3 +1,37 @@ |
|||||||
alias be="bundle exec" |
alias be="bundle exec" |
||||||
alias bi="bundle install" |
alias bi="bundle install" |
||||||
|
alias bl="bundle list" |
||||||
alias bu="bundle update" |
alias bu="bundle update" |
||||||
|
alias bp="bundle package" |
||||||
|
|
||||||
|
# The following is based on https://github.com/gma/bundler-exec |
||||||
|
|
||||||
|
bundled_commands=(cap capify cucumber heroku rackup rails rake rspec ruby shotgun spec spork thin unicorn unicorn_rails) |
||||||
|
|
||||||
|
## Functions |
||||||
|
|
||||||
|
_bundler-installed() { |
||||||
|
which bundle > /dev/null 2>&1 |
||||||
|
} |
||||||
|
|
||||||
|
_within-bundled-project() { |
||||||
|
local check_dir=$PWD |
||||||
|
while [ "$(dirname $check_dir)" != "/" ]; do |
||||||
|
[ -f "$check_dir/Gemfile" ] && return |
||||||
|
check_dir="$(dirname $check_dir)" |
||||||
|
done |
||||||
|
false |
||||||
|
} |
||||||
|
|
||||||
|
_run-with-bundler() { |
||||||
|
if _bundler-installed && _within-bundled-project; then |
||||||
|
bundle exec $@ |
||||||
|
else |
||||||
|
$@ |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
## Main program |
||||||
|
for cmd in $bundled_commands; do |
||||||
|
alias $cmd="_run-with-bundler $cmd" |
||||||
|
done |
||||||
|
|||||||
@ -0,0 +1,32 @@ |
|||||||
|
# Set this to 1 if you want to cache the tasks |
||||||
|
cache_task_list=1 |
||||||
|
|
||||||
|
# Cache filename |
||||||
|
cache_file='.cake_task_cache' |
||||||
|
|
||||||
|
_cake_does_target_list_need_generating () { |
||||||
|
|
||||||
|
if [ $cache_task_list -eq 0 ]; then |
||||||
|
return 1; |
||||||
|
fi |
||||||
|
|
||||||
|
if [ ! -f $cache_file ]; then return 0; |
||||||
|
else |
||||||
|
accurate=$(stat -f%m $cache_file) |
||||||
|
changed=$(stat -f%m Cakefile) |
||||||
|
return $(expr $accurate '>=' $changed) |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
_cake () { |
||||||
|
if [ -f Cakefile ]; then |
||||||
|
if _cake_does_target_list_need_generating; then |
||||||
|
cake | sed -e "s/cake \([^ ]*\) .*/\1/" | grep -v '^$' > $cache_file |
||||||
|
compadd `cat $cache_file` |
||||||
|
else |
||||||
|
compadd `cake | sed -e "s/cake \([^ ]*\) .*/\1/" | grep -v '^$'` |
||||||
|
fi |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
compdef _cake cake |
||||||
@ -0,0 +1,2 @@ |
|||||||
|
#!/bin/zsh |
||||||
|
alias cloudapp=$ZSH/plugins/cloudapp/cloudapp.rb |
||||||
@ -0,0 +1,60 @@ |
|||||||
|
#!/usr/bin/env ruby |
||||||
|
# |
||||||
|
# cloudapp |
||||||
|
# Zach Holman / @holman |
||||||
|
# |
||||||
|
# Uploads a file from the command line to CloudApp, drops it into your |
||||||
|
# clipboard (on a Mac, at least). |
||||||
|
# |
||||||
|
# Example: |
||||||
|
# |
||||||
|
# cloudapp drunk-blake.png |
||||||
|
# |
||||||
|
# This requires Aaron Russell's cloudapp_api gem: |
||||||
|
# |
||||||
|
# gem install cloudapp_api |
||||||
|
# |
||||||
|
# Requires you set your CloudApp credentials in ~/.cloudapp as a simple file of: |
||||||
|
# |
||||||
|
# email |
||||||
|
# password |
||||||
|
|
||||||
|
require 'rubygems' |
||||||
|
begin |
||||||
|
require 'cloudapp_api' |
||||||
|
rescue LoadError |
||||||
|
puts "You need to install cloudapp_api: gem install cloudapp_api" |
||||||
|
exit!(1) |
||||||
|
end |
||||||
|
|
||||||
|
config_file = "#{ENV['HOME']}/.cloudapp" |
||||||
|
unless File.exist?(config_file) |
||||||
|
puts "You need to type your email and password (one per line) into "+ |
||||||
|
"`~/.cloudapp`" |
||||||
|
exit!(1) |
||||||
|
end |
||||||
|
|
||||||
|
email,password = File.read(config_file).split("\n") |
||||||
|
|
||||||
|
class HTTParty::Response |
||||||
|
# Apparently HTTPOK.ok? IS NOT OKAY WTFFFFFFFFFFUUUUUUUUUUUUUU |
||||||
|
# LETS MONKEY PATCH IT I FEEL OKAY ABOUT IT |
||||||
|
def ok? ; true end |
||||||
|
end |
||||||
|
|
||||||
|
if ARGV[0].nil? |
||||||
|
puts "You need to specify a file to upload." |
||||||
|
exit!(1) |
||||||
|
end |
||||||
|
|
||||||
|
CloudApp.authenticate(email,password) |
||||||
|
url = CloudApp::Item.create(:upload, {:file => ARGV[0]}).url |
||||||
|
|
||||||
|
# Say it for good measure. |
||||||
|
puts "Uploaded to #{url}." |
||||||
|
|
||||||
|
# Get the embed link. |
||||||
|
url = "#{url}/#{ARGV[0].split('/').last}" |
||||||
|
|
||||||
|
# Copy it to your (Mac's) clipboard. |
||||||
|
`echo '#{url}' | tr -d "\n" | pbcopy` |
||||||
@ -0,0 +1,20 @@ |
|||||||
|
# ------------------------------------------------------------------------------ |
||||||
|
# FILE: compleat.plugin.zsh |
||||||
|
# DESCRIPTION: oh-my-zsh plugin file. |
||||||
|
# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com) |
||||||
|
# VERSION: 1.0.0 |
||||||
|
# ------------------------------------------------------------------------------ |
||||||
|
|
||||||
|
if (( ${+commands[compleat]} )); then |
||||||
|
local prefix="${commands[compleat]:h:h}" |
||||||
|
local setup="${prefix}/share/compleat-1.0/compleat_setup" |
||||||
|
|
||||||
|
if [[ -f "$setup" ]]; then |
||||||
|
if ! bashcompinit >/dev/null 2>&1; then |
||||||
|
autoload -U bashcompinit |
||||||
|
bashcompinit -i |
||||||
|
fi |
||||||
|
|
||||||
|
source "$setup" |
||||||
|
fi |
||||||
|
fi |
||||||
@ -1,4 +0,0 @@ |
|||||||
# add cpanm completion function to path |
|
||||||
fpath=($ZSH/plugins/cpanm $fpath) |
|
||||||
autoload -U compinit |
|
||||||
compinit -i |
|
||||||
@ -0,0 +1,222 @@ |
|||||||
|
#compdef manage.py |
||||||
|
|
||||||
|
typeset -ga nul_args |
||||||
|
nul_args=( |
||||||
|
'--settings=-[the Python path to a settings module.]:file:_files' |
||||||
|
'--pythonpath=-[a directory to add to the Python path.]::directory:_directories' |
||||||
|
'--traceback[print traceback on exception.]' |
||||||
|
"--version[show program's version number and exit.]" |
||||||
|
{-h,--help}'[show this help message and exit.]' |
||||||
|
) |
||||||
|
|
||||||
|
_managepy-adminindex(){ |
||||||
|
_arguments -s : \ |
||||||
|
$nul_args \ |
||||||
|
'*::directory:_directories' && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-createcachetable(){ |
||||||
|
_arguments -s : \ |
||||||
|
$nul_args && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-dbshell(){ |
||||||
|
_arguments -s : \ |
||||||
|
$nul_args && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-diffsettings(){ |
||||||
|
_arguments -s : \ |
||||||
|
$nul_args && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-dumpdata(){ |
||||||
|
_arguments -s : \ |
||||||
|
'--format=-[specifies the output serialization format for fixtures.]:format:(json yaml xml)' \ |
||||||
|
'--indent=-[specifies the indent level to use when pretty-printing output.]:' \ |
||||||
|
$nul_args \ |
||||||
|
'*::appname:_applist' && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-flush(){ |
||||||
|
_arguments -s : \ |
||||||
|
'--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ |
||||||
|
'--noinput[tells Django to NOT prompt the user for input of any kind.]' \ |
||||||
|
$nul_args && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-help(){ |
||||||
|
_arguments -s : \ |
||||||
|
'*:command:_managepy_cmds' \ |
||||||
|
$nul_args && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy_cmds(){ |
||||||
|
local line |
||||||
|
local -a cmd |
||||||
|
_call_program help-command ./manage.py help \ |
||||||
|
|& sed -n '/^ /s/[(), ]/ /gp' \ |
||||||
|
| while read -A line; do cmd=($line $cmd) done |
||||||
|
_describe -t managepy-command 'manage.py command' cmd |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-inspectdb(){ |
||||||
|
_arguments -s : \ |
||||||
|
$nul_args && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-loaddata(){ |
||||||
|
_arguments -s : \ |
||||||
|
'--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ |
||||||
|
'*::file:_files' \ |
||||||
|
$nul_args && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-reset(){ |
||||||
|
_arguments -s : \ |
||||||
|
'--noinput[tells Django to NOT prompt the user for input of any kind.]' \ |
||||||
|
'*::appname:_applist' \ |
||||||
|
$nul_args && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-runfcgi(){ |
||||||
|
local state |
||||||
|
|
||||||
|
local fcgi_opts |
||||||
|
fcgi_opts=( |
||||||
|
'protocol[fcgi, scgi, ajp, ... (default fcgi)]:protocol:(fcgi scgi ajp)' |
||||||
|
'host[hostname to listen on..]:' |
||||||
|
'port[port to listen on.]:' |
||||||
|
'socket[UNIX socket to listen on.]::file:_files' |
||||||
|
'method[prefork or threaded (default prefork)]:method:(prefork threaded)' |
||||||
|
'maxrequests[number of requests a child handles before it is killed and a new child is forked (0 = no limit).]:' |
||||||
|
'maxspare[max number of spare processes / threads.]:' |
||||||
|
'minspare[min number of spare processes / threads.]:' |
||||||
|
'maxchildren[hard limit number of processes / threads.]:' |
||||||
|
'daemonize[whether to detach from terminal.]:boolean:(False True)' |
||||||
|
'pidfile[write the spawned process-id to this file.]:file:_files' |
||||||
|
'workdir[change to this directory when daemonizing.]:directory:_files' |
||||||
|
'outlog[write stdout to this file.]:file:_files' |
||||||
|
'errlog[write stderr to this file.]:file:_files' |
||||||
|
) |
||||||
|
|
||||||
|
_arguments -s : \ |
||||||
|
$nul_args \ |
||||||
|
'*: :_values "FCGI Setting" $fcgi_opts' && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-runserver(){ |
||||||
|
_arguments -s : \ |
||||||
|
'--noreload[tells Django to NOT use the auto-reloader.]' \ |
||||||
|
'--adminmedia[specifies the directory from which to serve admin media.]:directory:_files' \ |
||||||
|
$nul_args && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-shell(){ |
||||||
|
_arguments -s : \ |
||||||
|
'--plain[tells Django to use plain Python, not IPython.]' \ |
||||||
|
$nul_args && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-sql(){} |
||||||
|
_managepy-sqlall(){} |
||||||
|
_managepy-sqlclear(){} |
||||||
|
_managepy-sqlcustom(){} |
||||||
|
_managepy-sqlflush(){} |
||||||
|
_managepy-sqlindexes(){} |
||||||
|
_managepy-sqlinitialdata(){} |
||||||
|
_managepy-sqlreset(){} |
||||||
|
_managepy-sqlsequencereset(){} |
||||||
|
_managepy-startapp(){} |
||||||
|
|
||||||
|
_managepy-syncdb() { |
||||||
|
_arguments -s : \ |
||||||
|
'--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ |
||||||
|
'--noinput[tells Django to NOT prompt the user for input of any kind.]' \ |
||||||
|
$nul_args && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-test() { |
||||||
|
_arguments -s : \ |
||||||
|
'--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ |
||||||
|
'--noinput[tells Django to NOT prompt the user for input of any kind.]' \ |
||||||
|
'*::appname:_applist' \ |
||||||
|
$nul_args && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-testserver() { |
||||||
|
_arguments -s : \ |
||||||
|
'--verbosity=-[verbosity level; 0=minimal output, 1=normal output, 2=all output.]:Verbosity:((0\:minimal 1\:normal 2\:all))' \ |
||||||
|
'--addrport=-[port number or ipaddr:port to run the server on.]' \ |
||||||
|
'*::fixture:_files' \ |
||||||
|
$nul_args && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-validate() { |
||||||
|
_arguments -s : \ |
||||||
|
$nul_args && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy-commands() { |
||||||
|
local -a commands |
||||||
|
|
||||||
|
commands=( |
||||||
|
'adminindex:prints the admin-index template snippet for the given app name(s).' |
||||||
|
'createcachetable:creates the table needed to use the SQL cache backend.' |
||||||
|
'dbshell:runs the command-line client for the current DATABASE_ENGINE.' |
||||||
|
"diffsettings:displays differences between the current settings.py and Django's default settings." |
||||||
|
'dumpdata:Output the contents of the database as a fixture of the given format.' |
||||||
|
'flush:Executes ``sqlflush`` on the current database.' |
||||||
|
'help:manage.py help.' |
||||||
|
'inspectdb:Introspects the database tables in the given database and outputs a Django model module.' |
||||||
|
'loaddata:Installs the named fixture(s) in the database.' |
||||||
|
'reset:Executes ``sqlreset`` for the given app(s) in the current database.' |
||||||
|
'runfcgi:Run this project as a fastcgi (or some other protocol supported by flup) application,' |
||||||
|
'runserver:Starts a lightweight Web server for development.' |
||||||
|
'shell:Runs a Python interactive interpreter.' |
||||||
|
'sql:Prints the CREATE TABLE SQL statements for the given app name(s).' |
||||||
|
'sqlall:Prints the CREATE TABLE, custom SQL and CREATE INDEX SQL statements for the given model module name(s).' |
||||||
|
'sqlclear:Prints the DROP TABLE SQL statements for the given app name(s).' |
||||||
|
'sqlcustom:Prints the custom table modifying SQL statements for the given app name(s).' |
||||||
|
'sqlflush:Returns a list of the SQL statements required to return all tables in the database to the state they were in just after they were installed.' |
||||||
|
'sqlindexes:Prints the CREATE INDEX SQL statements for the given model module name(s).' |
||||||
|
"sqlinitialdata:RENAMED: see 'sqlcustom'" |
||||||
|
'sqlreset:Prints the DROP TABLE SQL, then the CREATE TABLE SQL, for the given app name(s).' |
||||||
|
'sqlsequencereset:Prints the SQL statements for resetting sequences for the given app name(s).' |
||||||
|
"startapp:Creates a Django app directory structure for the given app name in this project's directory." |
||||||
|
"syncdb:Create the database tables for all apps in INSTALLED_APPS whose tables haven't already been created." |
||||||
|
'test:Runs the test suite for the specified applications, or the entire site if no apps are specified.' |
||||||
|
'testserver:Runs a development server with data from the given fixture(s).' |
||||||
|
'validate:Validates all installed models.' |
||||||
|
) |
||||||
|
|
||||||
|
_describe -t commands 'manage.py command' commands && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_applist() { |
||||||
|
local line |
||||||
|
local -a apps |
||||||
|
_call_program help-command "python -c \"import os.path as op, re, django.conf, sys;\\ |
||||||
|
bn=op.basename(op.abspath(op.curdir));[sys\\ |
||||||
|
.stdout.write(str(re.sub(r'^%s\.(.*?)$' % |
||||||
|
bn, r'\1', i)) + '\n') for i in django.conf.settings.\\ |
||||||
|
INSTALLED_APPS if re.match(r'^%s' % bn, i)]\"" \ |
||||||
|
| while read -A line; do apps=($line $apps) done |
||||||
|
_values 'Application' $apps && ret=0 |
||||||
|
} |
||||||
|
|
||||||
|
_managepy() { |
||||||
|
local curcontext=$curcontext ret=1 |
||||||
|
|
||||||
|
if ((CURRENT == 2)); then |
||||||
|
_managepy-commands |
||||||
|
else |
||||||
|
shift words |
||||||
|
(( CURRENT -- )) |
||||||
|
curcontext="${curcontext%:*:*}:managepy-$words[1]:" |
||||||
|
_call_function ret _managepy-$words[1] |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
compdef _managepy manage.py |
||||||
|
compdef _managepy django |
||||||
@ -0,0 +1,8 @@ |
|||||||
|
#compdef extract |
||||||
|
#autoload |
||||||
|
|
||||||
|
_arguments \ |
||||||
|
'(-r --remove)'{-r,--remove}'[Remove archive.]' \ |
||||||
|
"*::archive file:_files -g '(#i)*.(tar|tgz|tbz|tbz2|txz|tlz|gz|bz2|xz|lzma|Z|zip|rar|7z|deb)(-.)'" && return 0 |
||||||
|
|
||||||
|
|
||||||
@ -0,0 +1,85 @@ |
|||||||
|
# ------------------------------------------------------------------------------ |
||||||
|
# FILE: extract.plugin.zsh |
||||||
|
# DESCRIPTION: oh-my-zsh plugin file. |
||||||
|
# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com) |
||||||
|
# VERSION: 1.0.1 |
||||||
|
# ------------------------------------------------------------------------------ |
||||||
|
|
||||||
|
|
||||||
|
function extract() { |
||||||
|
local remove_archive |
||||||
|
local success |
||||||
|
local file_name |
||||||
|
local extract_dir |
||||||
|
|
||||||
|
if (( $# == 0 )); then |
||||||
|
echo "Usage: extract [-option] [file ...]" |
||||||
|
echo |
||||||
|
echo Options: |
||||||
|
echo " -r, --remove Remove archive." |
||||||
|
echo |
||||||
|
echo "Report bugs to <sorin.ionescu@gmail.com>." |
||||||
|
fi |
||||||
|
|
||||||
|
remove_archive=1 |
||||||
|
if [[ "$1" == "-r" ]] || [[ "$1" == "--remove" ]]; then |
||||||
|
remove_archive=0 |
||||||
|
shift |
||||||
|
fi |
||||||
|
|
||||||
|
while (( $# > 0 )); do |
||||||
|
if [[ ! -f "$1" ]]; then |
||||||
|
echo "extract: '$1' is not a valid file" 1>&2 |
||||||
|
shift |
||||||
|
continue |
||||||
|
fi |
||||||
|
|
||||||
|
success=0 |
||||||
|
file_name="$( basename "$1" )" |
||||||
|
extract_dir="$( echo "$file_name" | sed "s/\.${1##*.}//g" )" |
||||||
|
case "$1" in |
||||||
|
(*.tar.gz|*.tgz) tar xvzf "$1" ;; |
||||||
|
(*.tar.bz2|*.tbz|*.tbz2) tar xvjf "$1" ;; |
||||||
|
(*.tar.xz|*.txz) tar --xz --help &> /dev/null \ |
||||||
|
&& tar --xz -xvf "$1" \ |
||||||
|
|| xzcat "$1" | tar xvf - ;; |
||||||
|
(*.tar.zma|*.tlz) tar --lzma --help &> /dev/null \ |
||||||
|
&& tar --lzma -xvf "$1" \ |
||||||
|
|| lzcat "$1" | tar xvf - ;; |
||||||
|
(*.tar) tar xvf "$1" ;; |
||||||
|
(*.gz) gunzip "$1" ;; |
||||||
|
(*.bz2) bunzip2 "$1" ;; |
||||||
|
(*.xz) unxz "$1" ;; |
||||||
|
(*.lzma) unlzma "$1" ;; |
||||||
|
(*.Z) uncompress "$1" ;; |
||||||
|
(*.zip) unzip "$1" -d $extract_dir ;; |
||||||
|
(*.rar) unrar e -ad "$1" ;; |
||||||
|
(*.7z) 7za x "$1" ;; |
||||||
|
(*.deb) |
||||||
|
mkdir -p "$extract_dir/control" |
||||||
|
mkdir -p "$extract_dir/data" |
||||||
|
cd "$extract_dir"; ar vx "../${1}" > /dev/null |
||||||
|
cd control; tar xzvf ../control.tar.gz |
||||||
|
cd ../data; tar xzvf ../data.tar.gz |
||||||
|
cd ..; rm *.tar.gz debian-binary |
||||||
|
cd .. |
||||||
|
;; |
||||||
|
(*) |
||||||
|
echo "extract: '$1' cannot be extracted" 1>&2 |
||||||
|
success=1 |
||||||
|
;; |
||||||
|
esac |
||||||
|
|
||||||
|
(( success = $success > 0 ? $success : $? )) |
||||||
|
(( $success == 0 )) && (( $remove_archive == 0 )) && rm "$1" |
||||||
|
shift |
||||||
|
done |
||||||
|
} |
||||||
|
|
||||||
|
alias x=extract |
||||||
|
|
||||||
|
# add extract completion function to path |
||||||
|
fpath=($ZSH/plugins/extract $fpath) |
||||||
|
autoload -U compinit |
||||||
|
compinit -i |
||||||
|
|
||||||
@ -0,0 +1,34 @@ |
|||||||
|
#compdef gas |
||||||
|
|
||||||
|
local curcontext="$curcontext" state line cmds ret=1 |
||||||
|
|
||||||
|
_arguments -C \ |
||||||
|
'(- 1 *)'{-v,--version}'[display version information]' \ |
||||||
|
'(-h|--help)'{-h,--help}'[show help information]' \ |
||||||
|
'1: :->cmds' \ |
||||||
|
'*: :->args' && ret=0 |
||||||
|
|
||||||
|
case $state in |
||||||
|
cmds) |
||||||
|
cmds=( |
||||||
|
"version:Prints Gas's version" |
||||||
|
"use:Uses author" |
||||||
|
"show:Shows your current user" |
||||||
|
"list:Lists your authors" |
||||||
|
"import:Imports current user to gasconfig" |
||||||
|
"help:Describe available tasks or one specific task" |
||||||
|
"delete:Deletes author" |
||||||
|
"add:Adds author to gasconfig" |
||||||
|
) |
||||||
|
_describe -t commands 'gas command' cmds && ret=0 |
||||||
|
;; |
||||||
|
args) |
||||||
|
case $line[1] in |
||||||
|
(use|delete) |
||||||
|
_values -S , 'authors' $(cat ~/.gas | sed -n -e 's/^\[\(.*\)\]/\1/p') && ret=0 |
||||||
|
;; |
||||||
|
esac |
||||||
|
;; |
||||||
|
esac |
||||||
|
|
||||||
|
return ret |
||||||
@ -1,4 +0,0 @@ |
|||||||
# add gem completion function to path |
|
||||||
fpath=($ZSH/plugins/gem $fpath) |
|
||||||
autoload -U compinit |
|
||||||
compinit -i |
|
||||||
@ -0,0 +1,332 @@ |
|||||||
|
#!zsh |
||||||
|
# |
||||||
|
# Installation |
||||||
|
# ------------ |
||||||
|
# |
||||||
|
# To achieve git-flow completion nirvana: |
||||||
|
# |
||||||
|
# 0. Update your zsh's git-completion module to the newest verion. |
||||||
|
# From here. http://zsh.git.sourceforge.net/git/gitweb.cgi?p=zsh/zsh;a=blob_plain;f=Completion/Unix/Command/_git;hb=HEAD |
||||||
|
# |
||||||
|
# 1. Install this file. Either: |
||||||
|
# |
||||||
|
# a. Place it in your .zshrc: |
||||||
|
# |
||||||
|
# b. Or, copy it somewhere (e.g. ~/.git-flow-completion.zsh) and put the following line in |
||||||
|
# your .zshrc: |
||||||
|
# |
||||||
|
# source ~/.git-flow-completion.zsh |
||||||
|
# |
||||||
|
# c. Or, use this file as a oh-my-zsh plugin. |
||||||
|
# |
||||||
|
|
||||||
|
_git-flow () |
||||||
|
{ |
||||||
|
local curcontext="$curcontext" state line |
||||||
|
typeset -A opt_args |
||||||
|
|
||||||
|
_arguments -C \ |
||||||
|
':command:->command' \ |
||||||
|
'*::options:->options' |
||||||
|
|
||||||
|
case $state in |
||||||
|
(command) |
||||||
|
|
||||||
|
local -a subcommands |
||||||
|
subcommands=( |
||||||
|
'init:Initialize a new git repo with support for the branching model.' |
||||||
|
'feature:Manage your feature branches.' |
||||||
|
'release:Manage your release branches.' |
||||||
|
'hotfix:Manage your hotfix branches.' |
||||||
|
'support:Manage your support branches.' |
||||||
|
'version:Shows version information.' |
||||||
|
) |
||||||
|
_describe -t commands 'git flow' subcommands |
||||||
|
;; |
||||||
|
|
||||||
|
(options) |
||||||
|
case $line[1] in |
||||||
|
|
||||||
|
(init) |
||||||
|
_arguments \ |
||||||
|
-f'[Force setting of gitflow branches, even if already configured]' |
||||||
|
;; |
||||||
|
|
||||||
|
(version) |
||||||
|
;; |
||||||
|
|
||||||
|
(hotfix) |
||||||
|
__git-flow-hotfix |
||||||
|
;; |
||||||
|
|
||||||
|
(release) |
||||||
|
__git-flow-release |
||||||
|
;; |
||||||
|
|
||||||
|
(feature) |
||||||
|
__git-flow-feature |
||||||
|
;; |
||||||
|
esac |
||||||
|
;; |
||||||
|
esac |
||||||
|
} |
||||||
|
|
||||||
|
__git-flow-release () |
||||||
|
{ |
||||||
|
local curcontext="$curcontext" state line |
||||||
|
typeset -A opt_args |
||||||
|
|
||||||
|
_arguments -C \ |
||||||
|
':command:->command' \ |
||||||
|
'*::options:->options' |
||||||
|
|
||||||
|
case $state in |
||||||
|
(command) |
||||||
|
|
||||||
|
local -a subcommands |
||||||
|
subcommands=( |
||||||
|
'start:Start a new release branch.' |
||||||
|
'finish:Finish a release branch.' |
||||||
|
'list:List all your release branches. (Alias to `git flow release`)' |
||||||
|
) |
||||||
|
_describe -t commands 'git flow release' subcommands |
||||||
|
_arguments \ |
||||||
|
-v'[Verbose (more) output]' |
||||||
|
;; |
||||||
|
|
||||||
|
(options) |
||||||
|
case $line[1] in |
||||||
|
|
||||||
|
(start) |
||||||
|
_arguments \ |
||||||
|
-F'[Fetch from origin before performing finish]'\ |
||||||
|
':version:__git_flow_version_list' |
||||||
|
;; |
||||||
|
|
||||||
|
(finish) |
||||||
|
_arguments \ |
||||||
|
-F'[Fetch from origin before performing finish]' \ |
||||||
|
-s'[Sign the release tag cryptographically]'\ |
||||||
|
-u'[Use the given GPG-key for the digital signature (implies -s)]'\ |
||||||
|
-m'[Use the given tag message]'\ |
||||||
|
-p'[Push to $ORIGIN after performing finish]'\ |
||||||
|
':version:__git_flow_version_list' |
||||||
|
;; |
||||||
|
|
||||||
|
*) |
||||||
|
_arguments \ |
||||||
|
-v'[Verbose (more) output]' |
||||||
|
;; |
||||||
|
esac |
||||||
|
;; |
||||||
|
esac |
||||||
|
} |
||||||
|
|
||||||
|
__git-flow-hotfix () |
||||||
|
{ |
||||||
|
local curcontext="$curcontext" state line |
||||||
|
typeset -A opt_args |
||||||
|
|
||||||
|
_arguments -C \ |
||||||
|
':command:->command' \ |
||||||
|
'*::options:->options' |
||||||
|
|
||||||
|
case $state in |
||||||
|
(command) |
||||||
|
|
||||||
|
local -a subcommands |
||||||
|
subcommands=( |
||||||
|
'start:Start a new hotfix branch.' |
||||||
|
'finish:Finish a hotfix branch.' |
||||||
|
'list:List all your hotfix branches. (Alias to `git flow hotfix`)' |
||||||
|
) |
||||||
|
_describe -t commands 'git flow hotfix' subcommands |
||||||
|
_arguments \ |
||||||
|
-v'[Verbose (more) output]' |
||||||
|
;; |
||||||
|
|
||||||
|
(options) |
||||||
|
case $line[1] in |
||||||
|
|
||||||
|
(start) |
||||||
|
_arguments \ |
||||||
|
-F'[Fetch from origin before performing finish]'\ |
||||||
|
':hotfix:__git_flow_version_list'\ |
||||||
|
':branch-name:__git_branch_names' |
||||||
|
;; |
||||||
|
|
||||||
|
(finish) |
||||||
|
_arguments \ |
||||||
|
-F'[Fetch from origin before performing finish]' \ |
||||||
|
-s'[Sign the release tag cryptographically]'\ |
||||||
|
-u'[Use the given GPG-key for the digital signature (implies -s)]'\ |
||||||
|
-m'[Use the given tag message]'\ |
||||||
|
-p'[Push to $ORIGIN after performing finish]'\ |
||||||
|
':hotfix:__git_flow_hotfix_list' |
||||||
|
;; |
||||||
|
|
||||||
|
*) |
||||||
|
_arguments \ |
||||||
|
-v'[Verbose (more) output]' |
||||||
|
;; |
||||||
|
esac |
||||||
|
;; |
||||||
|
esac |
||||||
|
} |
||||||
|
|
||||||
|
__git-flow-feature () |
||||||
|
{ |
||||||
|
local curcontext="$curcontext" state line |
||||||
|
typeset -A opt_args |
||||||
|
|
||||||
|
_arguments -C \ |
||||||
|
':command:->command' \ |
||||||
|
'*::options:->options' |
||||||
|
|
||||||
|
case $state in |
||||||
|
(command) |
||||||
|
|
||||||
|
local -a subcommands |
||||||
|
subcommands=( |
||||||
|
'start:Start a new feature branch.' |
||||||
|
'finish:Finish a feature branch.' |
||||||
|
'list:List all your feature branches. (Alias to `git flow feature`)' |
||||||
|
'publish: public' |
||||||
|
'track: track' |
||||||
|
'diff: diff' |
||||||
|
'rebase: rebase' |
||||||
|
'checkout: checkout' |
||||||
|
'pull: pull' |
||||||
|
) |
||||||
|
_describe -t commands 'git flow feature' subcommands |
||||||
|
_arguments \ |
||||||
|
-v'[Verbose (more) output]' |
||||||
|
;; |
||||||
|
|
||||||
|
(options) |
||||||
|
case $line[1] in |
||||||
|
|
||||||
|
(start) |
||||||
|
_arguments \ |
||||||
|
-F'[Fetch from origin before performing finish]'\ |
||||||
|
':feature:__git_flow_feature_list'\ |
||||||
|
':branch-name:__git_branch_names' |
||||||
|
;; |
||||||
|
|
||||||
|
(finish) |
||||||
|
_arguments \ |
||||||
|
-F'[Fetch from origin before performing finish]' \ |
||||||
|
-r'[Rebase instead of merge]'\ |
||||||
|
':feature:__git_flow_feature_list' |
||||||
|
;; |
||||||
|
|
||||||
|
(publish) |
||||||
|
_arguments \ |
||||||
|
':feature:__git_flow_feature_list'\ |
||||||
|
;; |
||||||
|
|
||||||
|
(track) |
||||||
|
_arguments \ |
||||||
|
':feature:__git_flow_feature_list'\ |
||||||
|
;; |
||||||
|
|
||||||
|
(diff) |
||||||
|
_arguments \ |
||||||
|
':branch:__git_branch_names'\ |
||||||
|
;; |
||||||
|
|
||||||
|
(rebase) |
||||||
|
_arguments \ |
||||||
|
-i'[Do an interactive rebase]' \ |
||||||
|
':branch:__git_branch_names' |
||||||
|
;; |
||||||
|
|
||||||
|
(checkout) |
||||||
|
_arguments \ |
||||||
|
':branch:__git_flow_feature_list'\ |
||||||
|
;; |
||||||
|
|
||||||
|
(pull) |
||||||
|
_arguments \ |
||||||
|
':remote:__git_remotes'\ |
||||||
|
':branch:__git_branch_names' |
||||||
|
;; |
||||||
|
|
||||||
|
*) |
||||||
|
_arguments \ |
||||||
|
-v'[Verbose (more) output]' |
||||||
|
;; |
||||||
|
esac |
||||||
|
;; |
||||||
|
esac |
||||||
|
} |
||||||
|
|
||||||
|
__git_flow_version_list () |
||||||
|
{ |
||||||
|
local expl |
||||||
|
declare -a versions |
||||||
|
|
||||||
|
versions=(${${(f)"$(_call_program versions git flow release list 2> /dev/null | tr -d ' |*')"}}) |
||||||
|
__git_command_successful || return |
||||||
|
|
||||||
|
_wanted versions expl 'version' compadd $versions |
||||||
|
} |
||||||
|
|
||||||
|
__git_flow_feature_list () |
||||||
|
{ |
||||||
|
local expl |
||||||
|
declare -a features |
||||||
|
|
||||||
|
features=(${${(f)"$(_call_program features git flow feature list 2> /dev/null | tr -d ' |*')"}}) |
||||||
|
__git_command_successful || return |
||||||
|
|
||||||
|
_wanted features expl 'feature' compadd $features |
||||||
|
} |
||||||
|
|
||||||
|
__git_remotes () { |
||||||
|
local expl gitdir remotes |
||||||
|
|
||||||
|
gitdir=$(_call_program gitdir git rev-parse --git-dir 2>/dev/null) |
||||||
|
__git_command_successful || return |
||||||
|
|
||||||
|
remotes=(${${(f)"$(_call_program remotes git config --get-regexp '"^remote\..*\.url$"')"}//#(#b)remote.(*).url */$match[1]}) |
||||||
|
__git_command_successful || return |
||||||
|
|
||||||
|
# TODO: Should combine the two instead of either or. |
||||||
|
if (( $#remotes > 0 )); then |
||||||
|
_wanted remotes expl remote compadd $* - $remotes |
||||||
|
else |
||||||
|
_wanted remotes expl remote _files $* - -W "($gitdir/remotes)" -g "$gitdir/remotes/*" |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
__git_flow_hotfix_list () |
||||||
|
{ |
||||||
|
local expl |
||||||
|
declare -a hotfixes |
||||||
|
|
||||||
|
hotfixes=(${${(f)"$(_call_program hotfixes git flow hotfix list 2> /dev/null | tr -d ' |*')"}}) |
||||||
|
__git_command_successful || return |
||||||
|
|
||||||
|
_wanted hotfixes expl 'hotfix' compadd $hotfixes |
||||||
|
} |
||||||
|
|
||||||
|
__git_branch_names () { |
||||||
|
local expl |
||||||
|
declare -a branch_names |
||||||
|
|
||||||
|
branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads 2>/dev/null)"}#refs/heads/}) |
||||||
|
__git_command_successful || return |
||||||
|
|
||||||
|
_wanted branch-names expl branch-name compadd $* - $branch_names |
||||||
|
} |
||||||
|
|
||||||
|
__git_command_successful () { |
||||||
|
if (( ${#pipestatus:#0} > 0 )); then |
||||||
|
_message 'not a git repository' |
||||||
|
return 1 |
||||||
|
fi |
||||||
|
return 0 |
||||||
|
} |
||||||
|
|
||||||
|
zstyle ':completion:*:*:git:*' user-commands flow:'description for foo' |
||||||
@ -1,4 +1,6 @@ |
|||||||
# add github completion function to path |
# hub alias from defunkt |
||||||
fpath=($ZSH/plugins/github $fpath) |
# https://github.com/defunkt/hub |
||||||
autoload -U compinit |
if [ "$commands[(I)hub]" ]; then |
||||||
compinit -i |
# eval `hub alias -s zsh` |
||||||
|
function git(){hub "$@"} |
||||||
|
fi |
||||||
|
|||||||
@ -0,0 +1,26 @@ |
|||||||
|
# Based on ssh-agent code |
||||||
|
|
||||||
|
local GPG_ENV=$HOME/.gnupg/gpg-agent.env |
||||||
|
|
||||||
|
function start_agent { |
||||||
|
/usr/bin/env gpg-agent --daemon --enable-ssh-support --write-env-file ${GPG_ENV} > /dev/null |
||||||
|
chmod 600 ${GPG_ENV} |
||||||
|
. ${GPG_ENV} > /dev/null |
||||||
|
} |
||||||
|
|
||||||
|
# Source GPG agent settings, if applicable |
||||||
|
if [ -f "${GPG_ENV}" ]; then |
||||||
|
. ${GPG_ENV} > /dev/null |
||||||
|
ps -ef | grep ${SSH_AGENT_PID} | grep gpg-agent > /dev/null || { |
||||||
|
start_agent; |
||||||
|
} |
||||||
|
else |
||||||
|
start_agent; |
||||||
|
fi |
||||||
|
|
||||||
|
export GPG_AGENT_INFO |
||||||
|
export SSH_AUTH_SOCK |
||||||
|
export SSH_AGENT_PID |
||||||
|
|
||||||
|
GPG_TTY=$(tty) |
||||||
|
export GPG_TTY |
||||||
@ -0,0 +1,7 @@ |
|||||||
|
To activate this script, load it into an interactive ZSH session: |
||||||
|
|
||||||
|
% source history-substring-search.zsh |
||||||
|
|
||||||
|
See the "history-substring-search.zsh" file for more information: |
||||||
|
|
||||||
|
% sed -n '2,/^$/s/^#//p' history-substring-search.zsh | more |
||||||
@ -0,0 +1,12 @@ |
|||||||
|
# This file integrates the history-substring-search script into oh-my-zsh. |
||||||
|
|
||||||
|
source "$ZSH/plugins/history-substring-search/history-substring-search.zsh" |
||||||
|
|
||||||
|
if test "$CASE_SENSITIVE" = true; then |
||||||
|
unset HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS |
||||||
|
fi |
||||||
|
|
||||||
|
if test "$DISABLE_COLOR" = true; then |
||||||
|
unset HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND |
||||||
|
unset HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND |
||||||
|
fi |
||||||
@ -0,0 +1,642 @@ |
|||||||
|
#!/usr/bin/env zsh |
||||||
|
# |
||||||
|
# This is a clean-room implementation of the Fish[1] shell's history search |
||||||
|
# feature, where you can type in any part of any previously entered command |
||||||
|
# and press the UP and DOWN arrow keys to cycle through the matching commands. |
||||||
|
# |
||||||
|
#----------------------------------------------------------------------------- |
||||||
|
# Usage |
||||||
|
#----------------------------------------------------------------------------- |
||||||
|
# |
||||||
|
# 1. Load this script into your interactive ZSH session: |
||||||
|
# |
||||||
|
# % source history-substring-search.zsh |
||||||
|
# |
||||||
|
# If you want to use the zsh-syntax-highlighting[6] script along with this |
||||||
|
# script, then make sure that you load it *before* you load this script: |
||||||
|
# |
||||||
|
# % source zsh-syntax-highlighting.zsh |
||||||
|
# % source history-substring-search.zsh |
||||||
|
# |
||||||
|
# 2. Type any part of any previous command and then: |
||||||
|
# |
||||||
|
# * Press the UP arrow key to select the nearest command that (1) contains |
||||||
|
# your query and (2) is older than the current command in the command |
||||||
|
# history. |
||||||
|
# |
||||||
|
# * Press the DOWN arrow key to select the nearest command that (1) |
||||||
|
# contains your query and (2) is newer than the current command in the |
||||||
|
# command history. |
||||||
|
# |
||||||
|
# * Press ^U (the Control and U keys simultaneously) to abort the search. |
||||||
|
# |
||||||
|
# 3. If a matching command spans more than one line of text, press the LEFT |
||||||
|
# arrow key to move the cursor away from the end of the command, and then: |
||||||
|
# |
||||||
|
# * Press the UP arrow key to move the cursor to the line above. When the |
||||||
|
# cursor reaches the first line of the command, pressing the UP arrow |
||||||
|
# key again will cause this script to perform another search. |
||||||
|
# |
||||||
|
# * Press the DOWN arrow key to move the cursor to the line below. When |
||||||
|
# the cursor reaches the last line of the command, pressing the DOWN |
||||||
|
# arrow key again will cause this script to perform another search. |
||||||
|
# |
||||||
|
#----------------------------------------------------------------------------- |
||||||
|
# Configuration |
||||||
|
#----------------------------------------------------------------------------- |
||||||
|
# |
||||||
|
# This script defines the following global variables. You may override their |
||||||
|
# default values only after having loaded this script into your ZSH session. |
||||||
|
# |
||||||
|
# * HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND is a global variable that defines |
||||||
|
# how the query should be highlighted inside a matching command. Its default |
||||||
|
# value causes this script to highlight using bold, white text on a magenta |
||||||
|
# background. See the "Character Highlighting" section in the zshzle(1) man |
||||||
|
# page to learn about the kinds of values you may assign to this variable. |
||||||
|
# |
||||||
|
# * HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND is a global variable that |
||||||
|
# defines how the query should be highlighted when no commands in the |
||||||
|
# history match it. Its default value causes this script to highlight using |
||||||
|
# bold, white text on a red background. See the "Character Highlighting" |
||||||
|
# section in the zshzle(1) man page to learn about the kinds of values you |
||||||
|
# may assign to this variable. |
||||||
|
# |
||||||
|
# * HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS is a global variable that defines |
||||||
|
# how the command history will be searched for your query. Its default value |
||||||
|
# causes this script to perform a case-insensitive search. See the "Globbing |
||||||
|
# Flags" section in the zshexpn(1) man page to learn about the kinds of |
||||||
|
# values you may assign to this variable. |
||||||
|
# |
||||||
|
#----------------------------------------------------------------------------- |
||||||
|
# History |
||||||
|
#----------------------------------------------------------------------------- |
||||||
|
# |
||||||
|
# This script was originally written by Peter Stephenson[2], who published it |
||||||
|
# to the ZSH users mailing list (thereby making it public domain) in September |
||||||
|
# 2009. It was later revised by Guido van Steen and released under the BSD |
||||||
|
# license (see below) as part of the fizsh[3] project in January 2011. |
||||||
|
# |
||||||
|
# It was later extracted from fizsh[3] release 1.0.1, refactored heavily, and |
||||||
|
# repackaged as both an oh-my-zsh plugin[4] and as an independently loadable |
||||||
|
# ZSH script[5] by Suraj N. Kurapati in 2011. |
||||||
|
# |
||||||
|
# It was further developed[4] by Guido van Steen, Suraj N. Kurapati, Sorin |
||||||
|
# Ionescu, and Vincent Guerci in 2011. |
||||||
|
# |
||||||
|
# [1]: http://fishshell.com |
||||||
|
# [2]: http://www.zsh.org/mla/users/2009/msg00818.html |
||||||
|
# [3]: http://sourceforge.net/projects/fizsh/ |
||||||
|
# [4]: https://github.com/robbyrussell/oh-my-zsh/pull/215 |
||||||
|
# [5]: https://github.com/sunaku/zsh-history-substring-search |
||||||
|
# [6]: https://github.com/nicoulaj/zsh-syntax-highlighting |
||||||
|
# |
||||||
|
############################################################################## |
||||||
|
# |
||||||
|
# Copyright (c) 2009 Peter Stephenson |
||||||
|
# Copyright (c) 2011 Guido van Steen |
||||||
|
# Copyright (c) 2011 Suraj N. Kurapati |
||||||
|
# Copyright (c) 2011 Sorin Ionescu |
||||||
|
# Copyright (c) 2011 Vincent Guerci |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# Redistribution and use in source and binary forms, with or without |
||||||
|
# modification, are permitted provided that the following conditions are met: |
||||||
|
# |
||||||
|
# * Redistributions of source code must retain the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer. |
||||||
|
# |
||||||
|
# * Redistributions in binary form must reproduce the above |
||||||
|
# copyright notice, this list of conditions and the following |
||||||
|
# disclaimer in the documentation and/or other materials provided |
||||||
|
# with the distribution. |
||||||
|
# |
||||||
|
# * Neither the name of the FIZSH nor the names of its contributors |
||||||
|
# may be used to endorse or promote products derived from this |
||||||
|
# software without specific prior written permission. |
||||||
|
# |
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
||||||
|
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
||||||
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
||||||
|
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
||||||
|
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
||||||
|
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
||||||
|
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
||||||
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
||||||
|
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
||||||
|
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
||||||
|
# POSSIBILITY OF SUCH DAMAGE. |
||||||
|
# |
||||||
|
############################################################################## |
||||||
|
|
||||||
|
#----------------------------------------------------------------------------- |
||||||
|
# configuration variables |
||||||
|
#----------------------------------------------------------------------------- |
||||||
|
|
||||||
|
HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND='bg=magenta,fg=white,bold' |
||||||
|
HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND='bg=red,fg=white,bold' |
||||||
|
HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS='i' |
||||||
|
|
||||||
|
#----------------------------------------------------------------------------- |
||||||
|
# the main ZLE widgets |
||||||
|
#----------------------------------------------------------------------------- |
||||||
|
|
||||||
|
function history-substring-search-up() { |
||||||
|
_history-substring-search-begin |
||||||
|
|
||||||
|
_history-substring-search-up-history || |
||||||
|
_history-substring-search-up-buffer || |
||||||
|
_history-substring-search-up-search |
||||||
|
|
||||||
|
_history-substring-search-end |
||||||
|
} |
||||||
|
|
||||||
|
function history-substring-search-down() { |
||||||
|
_history-substring-search-begin |
||||||
|
|
||||||
|
_history-substring-search-down-history || |
||||||
|
_history-substring-search-down-buffer || |
||||||
|
_history-substring-search-down-search |
||||||
|
|
||||||
|
_history-substring-search-end |
||||||
|
} |
||||||
|
|
||||||
|
zle -N history-substring-search-up |
||||||
|
zle -N history-substring-search-down |
||||||
|
|
||||||
|
bindkey '\e[A' history-substring-search-up |
||||||
|
bindkey '\e[B' history-substring-search-down |
||||||
|
|
||||||
|
#----------------------------------------------------------------------------- |
||||||
|
# implementation details |
||||||
|
#----------------------------------------------------------------------------- |
||||||
|
|
||||||
|
setopt extendedglob |
||||||
|
zmodload -F zsh/parameter |
||||||
|
|
||||||
|
# |
||||||
|
# We have to "override" some keys and widgets if the |
||||||
|
# zsh-syntax-highlighting plugin has not been loaded: |
||||||
|
# |
||||||
|
# https://github.com/nicoulaj/zsh-syntax-highlighting |
||||||
|
# |
||||||
|
if [[ $+functions[_zsh_highlight] -eq 0 ]]; then |
||||||
|
# |
||||||
|
# Dummy implementation of _zsh_highlight() |
||||||
|
# that simply removes existing highlights |
||||||
|
# |
||||||
|
function _zsh_highlight() { |
||||||
|
region_highlight=() |
||||||
|
} |
||||||
|
|
||||||
|
# |
||||||
|
# Remove existing highlights when the user |
||||||
|
# inserts printable characters into $BUFFER |
||||||
|
# |
||||||
|
function ordinary-key-press() { |
||||||
|
if [[ $KEYS == [[:print:]] ]]; then |
||||||
|
region_highlight=() |
||||||
|
fi |
||||||
|
zle .self-insert |
||||||
|
} |
||||||
|
zle -N self-insert ordinary-key-press |
||||||
|
|
||||||
|
# |
||||||
|
# Override ZLE widgets to invoke _zsh_highlight() |
||||||
|
# |
||||||
|
# https://github.com/nicoulaj/zsh-syntax-highlighting/blob/ |
||||||
|
# bb7fcb79fad797a40077bebaf6f4e4a93c9d8163/zsh-syntax-highlighting.zsh#L121 |
||||||
|
# |
||||||
|
#--------------8<-------------------8<-------------------8<----------------- |
||||||
|
# |
||||||
|
# Copyright (c) 2010-2011 zsh-syntax-highlighting contributors |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# Redistribution and use in source and binary forms, with or without |
||||||
|
# modification, are permitted provided that the following conditions are |
||||||
|
# met: |
||||||
|
# |
||||||
|
# * Redistributions of source code must retain the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer. |
||||||
|
# |
||||||
|
# * Redistributions in binary form must reproduce the above copyright |
||||||
|
# notice, this list of conditions and the following disclaimer in the |
||||||
|
# documentation and/or other materials provided with the distribution. |
||||||
|
# |
||||||
|
# * Neither the name of the zsh-syntax-highlighting contributors nor the |
||||||
|
# names of its contributors may be used to endorse or promote products |
||||||
|
# derived from this software without specific prior written permission. |
||||||
|
# |
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS |
||||||
|
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
||||||
|
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
||||||
|
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR |
||||||
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
||||||
|
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
||||||
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
||||||
|
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
||||||
|
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
||||||
|
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
||||||
|
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||||
|
|
||||||
|
# Load ZSH module zsh/zleparameter, needed to override user defined widgets. |
||||||
|
zmodload zsh/zleparameter 2>/dev/null || { |
||||||
|
echo 'zsh-syntax-highlighting: failed loading zsh/zleparameter, exiting.' >&2 |
||||||
|
return -1 |
||||||
|
} |
||||||
|
|
||||||
|
# Override ZLE widgets to make them invoke _zsh_highlight. |
||||||
|
for event in ${${(f)"$(zle -la)"}:#(_*|orig-*|.run-help|.which-command)}; do |
||||||
|
if [[ "$widgets[$event]" == completion:* ]]; then |
||||||
|
eval "zle -C orig-$event ${${${widgets[$event]}#*:}/:/ } ; $event() { builtin zle orig-$event && _zsh_highlight } ; zle -N $event" |
||||||
|
else |
||||||
|
case $event in |
||||||
|
accept-and-menu-complete) |
||||||
|
eval "$event() { builtin zle .$event && _zsh_highlight } ; zle -N $event" |
||||||
|
;; |
||||||
|
|
||||||
|
# The following widgets should NOT remove any previously |
||||||
|
# applied highlighting. Therefore we do not remap them. |
||||||
|
.forward-char|.backward-char|.up-line-or-history|.down-line-or-history) |
||||||
|
;; |
||||||
|
|
||||||
|
.*) |
||||||
|
clean_event=$event[2,${#event}] # Remove the leading dot in the event name |
||||||
|
case ${widgets[$clean_event]-} in |
||||||
|
(completion|user):*) |
||||||
|
;; |
||||||
|
*) |
||||||
|
eval "$clean_event() { builtin zle $event && _zsh_highlight } ; zle -N $clean_event" |
||||||
|
;; |
||||||
|
esac |
||||||
|
;; |
||||||
|
*) |
||||||
|
;; |
||||||
|
esac |
||||||
|
fi |
||||||
|
done |
||||||
|
unset event clean_event |
||||||
|
#-------------->8------------------->8------------------->8----------------- |
||||||
|
fi |
||||||
|
|
||||||
|
function _history-substring-search-begin() { |
||||||
|
_history_substring_search_move_cursor_eol=false |
||||||
|
_history_substring_search_query_highlight= |
||||||
|
|
||||||
|
# |
||||||
|
# Continue using the previous $_history_substring_search_result by default, |
||||||
|
# unless the current query was cleared or a new/different query was entered. |
||||||
|
# |
||||||
|
if [[ -z $BUFFER || $BUFFER != $_history_substring_search_result ]]; then |
||||||
|
# |
||||||
|
# For the purpose of highlighting we will also keep |
||||||
|
# a version without doubly-escaped meta characters. |
||||||
|
# |
||||||
|
_history_substring_search_query=$BUFFER |
||||||
|
|
||||||
|
# |
||||||
|
# $BUFFER contains the text that is in the command-line currently. |
||||||
|
# we put an extra "\\" before meta characters such as "\(" and "\)", |
||||||
|
# so that they become "\\\(" and "\\\)". |
||||||
|
# |
||||||
|
_history_substring_search_query_escaped=${BUFFER//(#m)[\][()|\\*?#<>~^]/\\$MATCH} |
||||||
|
|
||||||
|
# |
||||||
|
# Find all occurrences of the search query in the history file. |
||||||
|
# |
||||||
|
# (k) turns it an array of line numbers. |
||||||
|
# |
||||||
|
# (on) seems to remove duplicates, which are default |
||||||
|
# options. They can be turned off by (ON). |
||||||
|
# |
||||||
|
_history_substring_search_matches=(${(kon)history[(R)(#$HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS)*${_history_substring_search_query_escaped}*]}) |
||||||
|
|
||||||
|
# |
||||||
|
# Define the range of values that $_history_substring_search_match_index |
||||||
|
# can take: [0, $_history_substring_search_matches_count_plus]. |
||||||
|
# |
||||||
|
_history_substring_search_matches_count=$#_history_substring_search_matches |
||||||
|
_history_substring_search_matches_count_plus=$(( _history_substring_search_matches_count + 1 )) |
||||||
|
_history_substring_search_matches_count_sans=$(( _history_substring_search_matches_count - 1 )) |
||||||
|
|
||||||
|
# |
||||||
|
# If $_history_substring_search_match_index is equal to |
||||||
|
# $_history_substring_search_matches_count_plus, this indicates that we |
||||||
|
# are beyond the beginning of $_history_substring_search_matches. |
||||||
|
# |
||||||
|
# If $_history_substring_search_match_index is equal to 0, this indicates |
||||||
|
# that we are beyond the end of $_history_substring_search_matches. |
||||||
|
# |
||||||
|
# If we have initially pressed "up" we have to initialize |
||||||
|
# $_history_substring_search_match_index to |
||||||
|
# $_history_substring_search_matches_count_plus so that it will be |
||||||
|
# decreased to $_history_substring_search_matches_count. |
||||||
|
# |
||||||
|
# If we have initially pressed "down" we have to initialize |
||||||
|
# $_history_substring_search_match_index to |
||||||
|
# $_history_substring_search_matches_count so that it will be increased to |
||||||
|
# $_history_substring_search_matches_count_plus. |
||||||
|
# |
||||||
|
if [[ $WIDGET == history-substring-search-down ]]; then |
||||||
|
_history_substring_search_match_index=$_history_substring_search_matches_count |
||||||
|
else |
||||||
|
_history_substring_search_match_index=$_history_substring_search_matches_count_plus |
||||||
|
fi |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
function _history-substring-search-end() { |
||||||
|
_history_substring_search_result=$BUFFER |
||||||
|
|
||||||
|
# move the cursor to the end of the command line |
||||||
|
if [[ $_history_substring_search_move_cursor_eol == true ]]; then |
||||||
|
CURSOR=${#BUFFER} |
||||||
|
fi |
||||||
|
|
||||||
|
# highlight command line using zsh-syntax-highlighting |
||||||
|
_zsh_highlight |
||||||
|
|
||||||
|
# highlight the search query inside the command line |
||||||
|
if [[ -n $_history_substring_search_query_highlight && -n $_history_substring_search_query ]]; then |
||||||
|
# |
||||||
|
# The following expression yields a variable $MBEGIN, which |
||||||
|
# indicates the begin position + 1 of the first occurrence |
||||||
|
# of _history_substring_search_query_escaped in $BUFFER. |
||||||
|
# |
||||||
|
: ${(S)BUFFER##(#m$HISTORY_SUBSTRING_SEARCH_GLOBBING_FLAGS)($_history_substring_search_query##)} |
||||||
|
local begin=$(( MBEGIN - 1 )) |
||||||
|
local end=$(( begin + $#_history_substring_search_query )) |
||||||
|
region_highlight+=("$begin $end $_history_substring_search_query_highlight") |
||||||
|
fi |
||||||
|
|
||||||
|
# For debugging purposes: |
||||||
|
# zle -R "mn: "$_history_substring_search_match_index" m#: "${#_history_substring_search_matches} |
||||||
|
# read -k -t 200 && zle -U $REPLY |
||||||
|
|
||||||
|
# Exit successfully from the history-substring-search-* widgets. |
||||||
|
true |
||||||
|
} |
||||||
|
|
||||||
|
function _history-substring-search-up-buffer() { |
||||||
|
# |
||||||
|
# Check if the UP arrow was pressed to move the cursor within a multi-line |
||||||
|
# buffer. This amounts to three tests: |
||||||
|
# |
||||||
|
# 1. $#buflines -gt 1. |
||||||
|
# |
||||||
|
# 2. $CURSOR -ne $#BUFFER. |
||||||
|
# |
||||||
|
# 3. Check if we are on the first line of the current multi-line buffer. |
||||||
|
# If so, pressing UP would amount to leaving the multi-line buffer. |
||||||
|
# |
||||||
|
# We check this by adding an extra "x" to $LBUFFER, which makes |
||||||
|
# sure that xlbuflines is always equal to the number of lines |
||||||
|
# until $CURSOR (including the line with the cursor on it). |
||||||
|
# |
||||||
|
local buflines XLBUFFER xlbuflines |
||||||
|
buflines=(${(f)BUFFER}) |
||||||
|
XLBUFFER=$LBUFFER"x" |
||||||
|
xlbuflines=(${(f)XLBUFFER}) |
||||||
|
|
||||||
|
if [[ $#buflines -gt 1 && $CURSOR -ne $#BUFFER && $#xlbuflines -ne 1 ]]; then |
||||||
|
zle up-line-or-history |
||||||
|
return true |
||||||
|
fi |
||||||
|
|
||||||
|
false |
||||||
|
} |
||||||
|
|
||||||
|
function _history-substring-search-down-buffer() { |
||||||
|
# |
||||||
|
# Check if the DOWN arrow was pressed to move the cursor within a multi-line |
||||||
|
# buffer. This amounts to three tests: |
||||||
|
# |
||||||
|
# 1. $#buflines -gt 1. |
||||||
|
# |
||||||
|
# 2. $CURSOR -ne $#BUFFER. |
||||||
|
# |
||||||
|
# 3. Check if we are on the last line of the current multi-line buffer. |
||||||
|
# If so, pressing DOWN would amount to leaving the multi-line buffer. |
||||||
|
# |
||||||
|
# We check this by adding an extra "x" to $RBUFFER, which makes |
||||||
|
# sure that xrbuflines is always equal to the number of lines |
||||||
|
# from $CURSOR (including the line with the cursor on it). |
||||||
|
# |
||||||
|
local buflines XRBUFFER xrbuflines |
||||||
|
buflines=(${(f)BUFFER}) |
||||||
|
XRBUFFER="x"$RBUFFER |
||||||
|
xrbuflines=(${(f)XRBUFFER}) |
||||||
|
|
||||||
|
if [[ $#buflines -gt 1 && $CURSOR -ne $#BUFFER && $#xrbuflines -ne 1 ]]; then |
||||||
|
zle down-line-or-history |
||||||
|
return true |
||||||
|
fi |
||||||
|
|
||||||
|
false |
||||||
|
} |
||||||
|
|
||||||
|
function _history-substring-search-up-history() { |
||||||
|
# |
||||||
|
# Behave like up in ZSH, except clear the $BUFFER |
||||||
|
# when beginning of history is reached like in Fish. |
||||||
|
# |
||||||
|
if [[ -z $_history_substring_search_query ]]; then |
||||||
|
|
||||||
|
# we have reached the absolute top of history |
||||||
|
if [[ $HISTNO -eq 1 ]]; then |
||||||
|
BUFFER= |
||||||
|
|
||||||
|
# going up from somewhere below the top of history |
||||||
|
else |
||||||
|
zle up-history |
||||||
|
fi |
||||||
|
|
||||||
|
return true |
||||||
|
fi |
||||||
|
|
||||||
|
false |
||||||
|
} |
||||||
|
|
||||||
|
function _history-substring-search-down-history() { |
||||||
|
# |
||||||
|
# Behave like down-history in ZSH, except clear the |
||||||
|
# $BUFFER when end of history is reached like in Fish. |
||||||
|
# |
||||||
|
if [[ -z $_history_substring_search_query ]]; then |
||||||
|
|
||||||
|
# going down from the absolute top of history |
||||||
|
if [[ $HISTNO -eq 1 && -z $BUFFER ]]; then |
||||||
|
BUFFER=${history[1]} |
||||||
|
_history_substring_search_move_cursor_eol=true |
||||||
|
|
||||||
|
# going down from somewhere above the bottom of history |
||||||
|
else |
||||||
|
zle down-history |
||||||
|
fi |
||||||
|
|
||||||
|
return true |
||||||
|
fi |
||||||
|
|
||||||
|
false |
||||||
|
} |
||||||
|
|
||||||
|
function _history-substring-search-up-search() { |
||||||
|
_history_substring_search_move_cursor_eol=true |
||||||
|
|
||||||
|
# |
||||||
|
# Highlight matches during history-substring-up-search: |
||||||
|
# |
||||||
|
# The following constants have been initialized in |
||||||
|
# _history-substring-search-up/down-search(): |
||||||
|
# |
||||||
|
# $_history_substring_search_matches is the current list of matches |
||||||
|
# $_history_substring_search_matches_count is the current number of matches |
||||||
|
# $_history_substring_search_matches_count_plus is the current number of matches + 1 |
||||||
|
# $_history_substring_search_matches_count_sans is the current number of matches - 1 |
||||||
|
# $_history_substring_search_match_index is the index of the current match |
||||||
|
# |
||||||
|
# The range of values that $_history_substring_search_match_index can take |
||||||
|
# is: [0, $_history_substring_search_matches_count_plus]. A value of 0 |
||||||
|
# indicates that we are beyond the end of |
||||||
|
# $_history_substring_search_matches. A value of |
||||||
|
# $_history_substring_search_matches_count_plus indicates that we are beyond |
||||||
|
# the beginning of $_history_substring_search_matches. |
||||||
|
# |
||||||
|
# In _history-substring-search-up-search() the initial value of |
||||||
|
# $_history_substring_search_match_index is |
||||||
|
# $_history_substring_search_matches_count_plus. This value is set in |
||||||
|
# _history-substring-search-begin(). _history-substring-search-up-search() |
||||||
|
# will initially decrease it to $_history_substring_search_matches_count. |
||||||
|
# |
||||||
|
if [[ $_history_substring_search_match_index -ge 2 ]]; then |
||||||
|
# |
||||||
|
# Highlight the next match: |
||||||
|
# |
||||||
|
# 1. Decrease the value of $_history_substring_search_match_index. |
||||||
|
# |
||||||
|
# 2. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND |
||||||
|
# to highlight the current buffer. |
||||||
|
# |
||||||
|
(( _history_substring_search_match_index-- )) |
||||||
|
BUFFER=$history[$_history_substring_search_matches[$_history_substring_search_match_index]] |
||||||
|
_history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND |
||||||
|
|
||||||
|
elif [[ $_history_substring_search_match_index -eq 1 ]]; then |
||||||
|
# |
||||||
|
# We will move beyond the end of $_history_substring_search_matches: |
||||||
|
# |
||||||
|
# 1. Decrease the value of $_history_substring_search_match_index. |
||||||
|
# |
||||||
|
# 2. Save the current buffer in $_history_substring_search_old_buffer, |
||||||
|
# so that it can be retrieved by |
||||||
|
# _history-substring-search-down-search() later. |
||||||
|
# |
||||||
|
# 3. Make $BUFFER equal to $_history_substring_search_query. |
||||||
|
# |
||||||
|
# 4. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND |
||||||
|
# to highlight the current buffer. |
||||||
|
# |
||||||
|
(( _history_substring_search_match_index-- )) |
||||||
|
_history_substring_search_old_buffer=$BUFFER |
||||||
|
BUFFER=$_history_substring_search_query |
||||||
|
_history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND |
||||||
|
|
||||||
|
elif [[ $_history_substring_search_match_index -eq $_history_substring_search_matches_count_plus ]]; then |
||||||
|
# |
||||||
|
# We were beyond the beginning of $_history_substring_search_matches but |
||||||
|
# UP makes us move back to $_history_substring_search_matches: |
||||||
|
# |
||||||
|
# 1. Decrease the value of $_history_substring_search_match_index. |
||||||
|
# |
||||||
|
# 2. Restore $BUFFER from $_history_substring_search_old_buffer. |
||||||
|
# |
||||||
|
# 3. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND |
||||||
|
# to highlight the current buffer. |
||||||
|
# |
||||||
|
(( _history_substring_search_match_index-- )) |
||||||
|
BUFFER=$_history_substring_search_old_buffer |
||||||
|
_history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
function _history-substring-search-down-search() { |
||||||
|
_history_substring_search_move_cursor_eol=true |
||||||
|
|
||||||
|
# |
||||||
|
# Highlight matches during history-substring-up-search: |
||||||
|
# |
||||||
|
# The following constants have been initialized in |
||||||
|
# _history-substring-search-up/down-search(): |
||||||
|
# |
||||||
|
# $_history_substring_search_matches is the current list of matches |
||||||
|
# $_history_substring_search_matches_count is the current number of matches |
||||||
|
# $_history_substring_search_matches_count_plus is the current number of matches + 1 |
||||||
|
# $_history_substring_search_matches_count_sans is the current number of matches - 1 |
||||||
|
# $_history_substring_search_match_index is the index of the current match |
||||||
|
# |
||||||
|
# The range of values that $_history_substring_search_match_index can take |
||||||
|
# is: [0, $_history_substring_search_matches_count_plus]. A value of 0 |
||||||
|
# indicates that we are beyond the end of |
||||||
|
# $_history_substring_search_matches. A value of |
||||||
|
# $_history_substring_search_matches_count_plus indicates that we are beyond |
||||||
|
# the beginning of $_history_substring_search_matches. |
||||||
|
# |
||||||
|
# In _history-substring-search-down-search() the initial value of |
||||||
|
# $_history_substring_search_match_index is |
||||||
|
# $_history_substring_search_matches_count. This value is set in |
||||||
|
# _history-substring-search-begin(). |
||||||
|
# _history-substring-search-down-search() will initially increase it to |
||||||
|
# $_history_substring_search_matches_count_plus. |
||||||
|
# |
||||||
|
if [[ $_history_substring_search_match_index -le $_history_substring_search_matches_count_sans ]]; then |
||||||
|
# |
||||||
|
# Highlight the next match: |
||||||
|
# |
||||||
|
# 1. Increase $_history_substring_search_match_index by 1. |
||||||
|
# |
||||||
|
# 2. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND |
||||||
|
# to highlight the current buffer. |
||||||
|
# |
||||||
|
(( _history_substring_search_match_index++ )) |
||||||
|
BUFFER=$history[$_history_substring_search_matches[$_history_substring_search_match_index]] |
||||||
|
_history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND |
||||||
|
|
||||||
|
elif [[ $_history_substring_search_match_index -eq $_history_substring_search_matches_count ]]; then |
||||||
|
# |
||||||
|
# We will move beyond the beginning of $_history_substring_search_matches: |
||||||
|
# |
||||||
|
# 1. Increase $_history_substring_search_match_index by 1. |
||||||
|
# |
||||||
|
# 2. Save the current buffer in $_history_substring_search_old_buffer, so |
||||||
|
# that it can be retrieved by _history-substring-search-up-search() |
||||||
|
# later. |
||||||
|
# |
||||||
|
# 3. Make $BUFFER equal to $_history_substring_search_query. |
||||||
|
# |
||||||
|
# 4. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND |
||||||
|
# to highlight the current buffer. |
||||||
|
# |
||||||
|
(( _history_substring_search_match_index++ )) |
||||||
|
_history_substring_search_old_buffer=$BUFFER |
||||||
|
BUFFER=$_history_substring_search_query |
||||||
|
_history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_NOT_FOUND |
||||||
|
|
||||||
|
elif [[ $_history_substring_search_match_index -eq 0 ]]; then |
||||||
|
# |
||||||
|
# We were beyond the end of $_history_substring_search_matches but DOWN |
||||||
|
# makes us move back to the $_history_substring_search_matches: |
||||||
|
# |
||||||
|
# 1. Increase $_history_substring_search_match_index by 1. |
||||||
|
# |
||||||
|
# 2. Restore $BUFFER from $_history_substring_search_old_buffer. |
||||||
|
# |
||||||
|
# 3. Use $HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND |
||||||
|
# to highlight the current buffer. |
||||||
|
# |
||||||
|
(( _history_substring_search_match_index++ )) |
||||||
|
BUFFER=$_history_substring_search_old_buffer |
||||||
|
_history_substring_search_query_highlight=$HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
# -*- mode: zsh; sh-indentation: 2; indent-tabs-mode: nil; sh-basic-offset: 2; -*- |
||||||
|
# vim: ft=zsh sw=2 ts=2 et |
||||||
@ -0,0 +1,9 @@ |
|||||||
|
|
||||||
|
# Kate |
||||||
|
# Start kate always silent |
||||||
|
alias kate='kate >/dev/null 2>&1' |
||||||
|
|
||||||
|
function kt () { |
||||||
|
cd $1 |
||||||
|
kate $1 |
||||||
|
} |
||||||
@ -0,0 +1,174 @@ |
|||||||
|
#compdef knife |
||||||
|
|
||||||
|
# These flags should be available everywhere according to man knife |
||||||
|
knife_general_flags=( --help --server-url --key --config --editor --format --log_level --logfile --no-editor --user --print-after --version --yes ) |
||||||
|
|
||||||
|
# knife has a very special syntax, some example calls are: |
||||||
|
# knife status |
||||||
|
# knife cookbook list |
||||||
|
# knife role show ROLENAME |
||||||
|
# knife data bag show DATABAGNAME |
||||||
|
# knife role show ROLENAME --attribute ATTRIBUTENAME |
||||||
|
# knife cookbook show COOKBOOKNAME COOKBOOKVERSION recipes |
||||||
|
|
||||||
|
# The -Q switch in compadd allow for completions of things like "data bag" without having to go through two rounds of completion and avoids zsh inserting a \ for escaping spaces |
||||||
|
_knife() { |
||||||
|
local curcontext="$curcontext" state line |
||||||
|
typeset -A opt_args |
||||||
|
cloudproviders=(bluebox ec2 rackspace slicehost terremark) |
||||||
|
_arguments \ |
||||||
|
'1: :->knifecmd'\ |
||||||
|
'2: :->knifesubcmd'\ |
||||||
|
'3: :->knifesubcmd2' \ |
||||||
|
'4: :->knifesubcmd3' \ |
||||||
|
'5: :->knifesubcmd4' \ |
||||||
|
'6: :->knifesubcmd5' |
||||||
|
|
||||||
|
case $state in |
||||||
|
knifecmd) |
||||||
|
compadd -Q "$@" bootstrap client configure cookbook "cookbook site" "data bag" exec index node recipe role search ssh status windows $cloudproviders |
||||||
|
;; |
||||||
|
knifesubcmd) |
||||||
|
case $words[2] in |
||||||
|
(bluebox|ec2|rackspace|slicehost|terremark) |
||||||
|
compadd "$@" server images |
||||||
|
;; |
||||||
|
client) |
||||||
|
compadd -Q "$@" "bulk delete" list create show delete edit reregister |
||||||
|
;; |
||||||
|
configure) |
||||||
|
compadd "$@" client |
||||||
|
;; |
||||||
|
cookbook) |
||||||
|
compadd -Q "$@" test list create download delete "metadata from" show "bulk delete" metadata upload |
||||||
|
;; |
||||||
|
node) |
||||||
|
compadd -Q "$@" "from file" create show edit delete list run_list "bulk delete" |
||||||
|
;; |
||||||
|
recipe) |
||||||
|
compadd "$@" list |
||||||
|
;; |
||||||
|
role) |
||||||
|
compadd -Q "$@" "bulk delete" create delete edit "from file" list show |
||||||
|
;; |
||||||
|
windows) |
||||||
|
compadd "$@" bootstrap |
||||||
|
;; |
||||||
|
*) |
||||||
|
_arguments '2:Subsubcommands:($(_knife_options1))' |
||||||
|
esac |
||||||
|
;; |
||||||
|
knifesubcmd2) |
||||||
|
case $words[3] in |
||||||
|
server) |
||||||
|
compadd "$@" list create delete |
||||||
|
;; |
||||||
|
images) |
||||||
|
compadd "$@" list |
||||||
|
;; |
||||||
|
site) |
||||||
|
compadd "$@" vendor show share search download list unshare |
||||||
|
;; |
||||||
|
(show|delete|edit) |
||||||
|
_arguments '3:Subsubcommands:($(_chef_$words[2]s_remote))' |
||||||
|
;; |
||||||
|
(upload|test) |
||||||
|
_arguments '3:Subsubcommands:($(_chef_$words[2]s_local) --all)' |
||||||
|
;; |
||||||
|
list) |
||||||
|
compadd -a "$@" knife_general_flags |
||||||
|
;; |
||||||
|
bag) |
||||||
|
compadd -Q "$@" show edit list "from file" create delete |
||||||
|
;; |
||||||
|
*) |
||||||
|
_arguments '3:Subsubcommands:($(_knife_options2))' |
||||||
|
esac |
||||||
|
;; |
||||||
|
knifesubcmd3) |
||||||
|
case $words[3] in |
||||||
|
show) |
||||||
|
case $words[2] in |
||||||
|
cookbook) |
||||||
|
versioncomp=1 |
||||||
|
_arguments '4:Cookbookversions:($(_cookbook_versions) latest)' |
||||||
|
;; |
||||||
|
(node|client|role) |
||||||
|
compadd "$@" --attribute |
||||||
|
esac |
||||||
|
esac |
||||||
|
case $words[4] in |
||||||
|
(show|edit) |
||||||
|
_arguments '4:Subsubsubcommands:($(_chef_$words[2]_$words[3]s_remote))' |
||||||
|
;; |
||||||
|
file) |
||||||
|
_arguments '*:file or directory:_files -g "*.(rb|json)"' |
||||||
|
;; |
||||||
|
list) |
||||||
|
compadd -a "$@" knife_general_flags |
||||||
|
;; |
||||||
|
*) |
||||||
|
_arguments '*:Subsubcommands:($(_knife_options3))' |
||||||
|
esac |
||||||
|
;; |
||||||
|
knifesubcmd4) |
||||||
|
if (( versioncomp > 0 )); then |
||||||
|
compadd "$@" attributes definitions files libraries providers recipes resources templates |
||||||
|
else |
||||||
|
_arguments '*:Subsubcommands:($(_knife_options2))' |
||||||
|
fi |
||||||
|
;; |
||||||
|
knifesubcmd5) |
||||||
|
_arguments '*:Subsubcommands:($(_knife_options3))' |
||||||
|
esac |
||||||
|
} |
||||||
|
|
||||||
|
# Helper functions to provide the argument completion for several depths of commands |
||||||
|
_knife_options1() { |
||||||
|
( for line in $( knife $words[2] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done ) |
||||||
|
} |
||||||
|
|
||||||
|
_knife_options2() { |
||||||
|
( for line in $( knife $words[2] $words[3] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done ) |
||||||
|
} |
||||||
|
|
||||||
|
_knife_options3() { |
||||||
|
( for line in $( knife $words[2] $words[3] $words[4] --help | grep -v "^knife" ); do echo $line | grep "\-\-"; done ) |
||||||
|
} |
||||||
|
|
||||||
|
# The chef_x_remote functions use knife to get a list of objects of type x on the server |
||||||
|
_chef_roles_remote() { |
||||||
|
(knife role list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}') |
||||||
|
} |
||||||
|
|
||||||
|
_chef_clients_remote() { |
||||||
|
(knife client list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}') |
||||||
|
} |
||||||
|
|
||||||
|
_chef_nodes_remote() { |
||||||
|
(knife node list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}') |
||||||
|
} |
||||||
|
|
||||||
|
_chef_cookbooks_remote() { |
||||||
|
(knife cookbook list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}') |
||||||
|
} |
||||||
|
|
||||||
|
_chef_sitecookbooks_remote() { |
||||||
|
(knife cookbook site list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}') |
||||||
|
} |
||||||
|
|
||||||
|
_chef_data_bags_remote() { |
||||||
|
(knife data bag list | grep \" | awk '{print $1}' | awk -F"," '{print $1}' | awk -F"\"" '{print $2}') |
||||||
|
} |
||||||
|
|
||||||
|
# The chef_x_local functions use the knife config to find the paths of relevant objects x to be uploaded to the server |
||||||
|
_chef_cookbooks_local() { |
||||||
|
(for i in $( grep cookbook_path $HOME/.chef/knife.rb | awk 'BEGIN {FS = "[" }; {print $2}' | sed 's/\,//g' | sed "s/'//g" | sed 's/\(.*\)]/\1/' ); do ls $i; done) |
||||||
|
} |
||||||
|
|
||||||
|
# This function extracts the available cookbook versions on the chef server |
||||||
|
_cookbook_versions() { |
||||||
|
(knife cookbook show $words[4] | grep -v $words[4] | grep -v -E '\]|\[|\{|\}' | sed 's/ //g' | sed 's/"//g') |
||||||
|
} |
||||||
|
|
||||||
|
_knife "$@" |
||||||
@ -0,0 +1,27 @@ |
|||||||
|
function _lein_commands() { |
||||||
|
local ret=1 state |
||||||
|
_arguments ':subcommand:->subcommand' && ret=0 |
||||||
|
|
||||||
|
case $state in |
||||||
|
subcommand) |
||||||
|
subcommands=( |
||||||
|
"clean:remove compiled files and dependencies from project" |
||||||
|
"compile:ahead-of-time compile the project" |
||||||
|
"deps:download and install all dependencies" |
||||||
|
"help:display a list of tasks or help for a given task" |
||||||
|
"install:install the project and its dependencies in your local repository" |
||||||
|
"jar:create a jar file containing the compiled .class files" |
||||||
|
"new:create a new project skeleton" |
||||||
|
"pom:write a pom.xml file to disk for maven interop" |
||||||
|
"test:run the project's tests" |
||||||
|
"uberjar:Create a jar including the contents of each of deps" |
||||||
|
"upgrade:upgrade leiningen to the latest stable release" |
||||||
|
"version:print leiningen's version" |
||||||
|
) |
||||||
|
_describe -t subcommands 'leiningen subcommands' subcommands && ret=0 |
||||||
|
esac |
||||||
|
|
||||||
|
return ret |
||||||
|
} |
||||||
|
|
||||||
|
compdef _lein_commands lein |
||||||
@ -0,0 +1,8 @@ |
|||||||
|
# commands to control local mysql-server installation |
||||||
|
# paths are for osx installation via macports |
||||||
|
|
||||||
|
alias mysqlstart='sudo /opt/local/share/mysql5/mysql/mysql.server start' |
||||||
|
alias mysqlstop='sudo /opt/local/share/mysql5/mysql/mysql.server stop' |
||||||
|
alias mysqlrestart='sudo /opt/local/share/mysql5/mysql/mysql.server restart' |
||||||
|
|
||||||
|
alias mysqlstatus='mysqladmin5 -u root -p ping' |
||||||
@ -1,6 +0,0 @@ |
|||||||
# commands to control local mysql-server installation |
|
||||||
# paths are for osx installtion via macports |
|
||||||
|
|
||||||
alias mysqlstart='sudo /opt/local/bin/mysqld_safe5' |
|
||||||
alias mysqlstop='/opt/local/bin/mysqladmin5 -u root -p shutdown' |
|
||||||
alias mysqlstatus='mysqladmin5 -u root -p ping' |
|
||||||
@ -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,19 @@ |
|||||||
|
#compdef npm |
||||||
|
|
||||||
|
# Node Package Manager 0.3.15 completion, letting npm do all the completion work |
||||||
|
|
||||||
|
_npm() { |
||||||
|
compadd -- $(_npm_complete $words) |
||||||
|
} |
||||||
|
|
||||||
|
# We want to show all errors of any substance, but never the "npm (not )ok" one. |
||||||
|
# (Also doesn't consider "ERR! no match found" worth breaking the terminal for.) |
||||||
|
_npm_complete() { |
||||||
|
local ask_npm |
||||||
|
ask_npm=(npm completion --color false --loglevel error -- $@) |
||||||
|
{ _call_program npm $ask_npm 2>&1 >&3 \ |
||||||
|
| egrep -v '^(npm (not |)ok|ERR! no match found)$' >&2; \ |
||||||
|
} 3>&1 |
||||||
|
} |
||||||
|
|
||||||
|
_npm "$@" |
||||||
@ -0,0 +1,5 @@ |
|||||||
|
#compdef man-preview |
||||||
|
#autoload |
||||||
|
|
||||||
|
_man |
||||||
|
|
||||||
@ -1,57 +1,99 @@ |
|||||||
function savepath() { |
# ------------------------------------------------------------------------------ |
||||||
pwd > ~/.current_path~ |
# FILE: osx.plugin.zsh |
||||||
} |
# DESCRIPTION: oh-my-zsh plugin file. |
||||||
|
# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com) |
||||||
|
# VERSION: 1.0.1 |
||||||
|
# ------------------------------------------------------------------------------ |
||||||
|
|
||||||
|
|
||||||
function tab() { |
function tab() { |
||||||
savepath |
local command="cd \\\"$PWD\\\"" |
||||||
osascript >/dev/null <<EOF |
(( $# > 0 )) && command="${command}; $*" |
||||||
on do_submenu(app_name, menu_name, menu_item, submenu_item) |
|
||||||
-- bring the target application to the front |
the_app=$( |
||||||
tell application app_name |
osascript 2>/dev/null <<EOF |
||||||
activate |
|
||||||
end tell |
|
||||||
tell application "System Events" |
tell application "System Events" |
||||||
tell process app_name |
name of first item of (every process whose frontmost is true) |
||||||
tell menu bar 1 |
|
||||||
tell menu bar item menu_name |
|
||||||
tell menu menu_name |
|
||||||
tell menu item menu_item |
|
||||||
tell menu menu_item |
|
||||||
click menu item submenu_item |
|
||||||
end tell |
|
||||||
end tell |
|
||||||
end tell |
|
||||||
end tell |
|
||||||
end tell |
|
||||||
end tell |
end tell |
||||||
end tell |
|
||||||
end do_submenu |
|
||||||
|
|
||||||
do_submenu("Terminal", "Shell", "New Tab", 1) |
|
||||||
EOF |
EOF |
||||||
} |
) |
||||||
|
|
||||||
function itab() { |
[[ "$the_app" == 'Terminal' ]] && { |
||||||
savepath |
osascript 2>/dev/null <<EOF |
||||||
osascript >/dev/null <<EOF |
|
||||||
on do_submenu(app_name, menu_name, menu_item) |
|
||||||
-- bring the target application to the front |
|
||||||
tell application app_name |
|
||||||
activate |
|
||||||
end tell |
|
||||||
tell application "System Events" |
tell application "System Events" |
||||||
tell process app_name |
tell process "Terminal" to keystroke "t" using command down |
||||||
tell menu bar 1 |
tell application "Terminal" to do script "${command}" in front window |
||||||
tell menu bar item menu_name |
|
||||||
tell menu menu_name |
|
||||||
click menu item menu_item |
|
||||||
end tell |
end tell |
||||||
|
EOF |
||||||
|
} |
||||||
|
|
||||||
|
[[ "$the_app" == 'iTerm' ]] && { |
||||||
|
osascript 2>/dev/null <<EOF |
||||||
|
tell application "iTerm" |
||||||
|
set current_terminal to current terminal |
||||||
|
tell current_terminal |
||||||
|
launch session "Default Session" |
||||||
|
set current_session to current session |
||||||
|
tell current_session |
||||||
|
write text "${command}" |
||||||
end tell |
end tell |
||||||
end tell |
end tell |
||||||
end tell |
end tell |
||||||
|
EOF |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
function pfd() { |
||||||
|
osascript 2>/dev/null <<EOF |
||||||
|
tell application "Finder" |
||||||
|
return POSIX path of (target of window 1 as alias) |
||||||
end tell |
end tell |
||||||
end do_submenu |
EOF |
||||||
|
} |
||||||
|
|
||||||
do_submenu("iTerm", "Shell", "New Tab") |
function pfs() { |
||||||
|
osascript 2>/dev/null <<EOF |
||||||
|
set output to "" |
||||||
|
tell application "Finder" to set the_selection to selection |
||||||
|
set item_count to count the_selection |
||||||
|
repeat with item_index from 1 to count the_selection |
||||||
|
if item_index is less than item_count then set the_delimiter to "\n" |
||||||
|
if item_index is item_count then set the_delimiter to "" |
||||||
|
set output to output & ((item item_index of the_selection as alias)'s POSIX path) & the_delimiter |
||||||
|
end repeat |
||||||
EOF |
EOF |
||||||
} |
} |
||||||
|
|
||||||
|
function cdf() { |
||||||
|
cd "$(pfd)" |
||||||
|
} |
||||||
|
|
||||||
|
function pushdf() { |
||||||
|
pushd "$(pfd)" |
||||||
|
} |
||||||
|
|
||||||
|
function quick-look() { |
||||||
|
(( $# > 0 )) && qlmanage -p $* &>/dev/null & |
||||||
|
} |
||||||
|
|
||||||
|
function man-preview() { |
||||||
|
man -t "$@" | open -f -a Preview |
||||||
|
} |
||||||
|
|
||||||
|
function trash() { |
||||||
|
local trash_dir="${HOME}/.Trash" |
||||||
|
local temp_ifs=$IFS |
||||||
|
IFS=$'\n' |
||||||
|
for item in "$@"; do |
||||||
|
if [[ -e "$item" ]]; then |
||||||
|
item_name="$(basename $item)" |
||||||
|
if [[ -e "${trash_dir}/${item_name}" ]]; then |
||||||
|
mv -f "$item" "${trash_dir}/${item_name} $(date "+%H-%M-%S")" |
||||||
|
else |
||||||
|
mv -f "$item" "${trash_dir}/" |
||||||
|
fi |
||||||
|
fi |
||||||
|
done |
||||||
|
IFS=$temp_ifs |
||||||
|
} |
||||||
|
|
||||||
|
|||||||
@ -1,4 +0,0 @@ |
|||||||
# add brew completion function to path |
|
||||||
fpath=($ZSH/plugins/pip $fpath) |
|
||||||
autoload -U compinit |
|
||||||
compinit -i |
|
||||||
@ -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 |
||||||
@ -0,0 +1,142 @@ |
|||||||
|
#compdef redis-cli rec |
||||||
|
#autoload |
||||||
|
|
||||||
|
#redis cli completion, based off homebrew completion (ref. 2011-04-14) |
||||||
|
|
||||||
|
local -a _1st_arguments |
||||||
|
_1st_arguments=( |
||||||
|
'append:append a value to a key' |
||||||
|
'auth:authenticate to the server' |
||||||
|
'bgrewriteeaof:asynchronously rewrite the append-only file' |
||||||
|
'bgsave:asynchornously save the dataset to disk' |
||||||
|
'blpop:remove and get the first element in a list, or block until one is available' |
||||||
|
'brpop:remove and get the last element in a list, or block until one is available' |
||||||
|
'brpoplpush:pop a value from a list, push it to another list and return it; or block until one is available' |
||||||
|
# 'config get:get the value of a configuration parameter' |
||||||
|
# 'config set:set a configuration parameter to the given value' |
||||||
|
# 'config resetstat: reset the stats returned by INFO' |
||||||
|
'dbsize:return the number of keys in the selected database' |
||||||
|
# 'debug object:get debugging information about a key' |
||||||
|
# 'debug setgfault:make the server crash' |
||||||
|
'decr:decrement the integer value of a key by one' |
||||||
|
'decrby:decrement the integet value of a key by the given number' |
||||||
|
'del:delete a key' |
||||||
|
'discard:discard all commands issued after MULTI' |
||||||
|
'echo:echo the given string' |
||||||
|
'exec:execute all commands issued after a MULTI' |
||||||
|
'exists:determine if a key exists' |
||||||
|
'expire:set the time to live for a key, in seconds' |
||||||
|
'expireat:set the expiration for a key as a UNIX timestamp' |
||||||
|
'flushall:remove all keys from all databases' |
||||||
|
'flushdb:remove all keys from the current database' |
||||||
|
'get:get the value of a key' |
||||||
|
'getbit:returns the bit value at offset in the string value stored at key' |
||||||
|
'getrange:get a substring of the string stored at a key' |
||||||
|
'getset:set the string value of a key and return its old value' |
||||||
|
'hdel:delete a hash field' |
||||||
|
'hexists:determine if a hash field exists' |
||||||
|
'hget:get the value of a hash field' |
||||||
|
'hgetall:get all the fields and values in a hash' |
||||||
|
'hincrby:increment the integer value of a hash field by the given number' |
||||||
|
'hkeys:get all the fields in a hash' |
||||||
|
'hlen:get the number of fields in a hash' |
||||||
|
'hmget:get the values of all the given hash fields' |
||||||
|
'hmset:set multiple hash fields to multiple values' |
||||||
|
'hset:set the string value of a hash field' |
||||||
|
'hsetnx:set the value of a hash field, only if the field does not exist' |
||||||
|
'hvals:get all the values in a hash' |
||||||
|
'incr:increment the integer value of a key by one' |
||||||
|
'incrby:increment the integer value of a key by the given number' |
||||||
|
'info:get information and statistics about the server' |
||||||
|
'keys:find all keys matching the given pattern' |
||||||
|
'lastsave:get the UNIX timestamp of the last successful save to disk' |
||||||
|
'lindex:get an element from a list by its index' |
||||||
|
'linsert:insert an element before or after another element in a list' |
||||||
|
'llen:get the length of a list' |
||||||
|
'lpop:remove and get the first element in a list' |
||||||
|
'lpush:prepend a value to a list' |
||||||
|
'lpushx:prepend a value to a list, only if the list exists' |
||||||
|
'lrange:get a range of elements from a list' |
||||||
|
'lrem:remove elements from a list' |
||||||
|
'lset:set the value of an element in a list by its index' |
||||||
|
'ltrim:trim a list to the specified range' |
||||||
|
'mget:get the values of all the given keys' |
||||||
|
'monitor:listen for all requests received by the server in real time' |
||||||
|
'move:move a key to another database' |
||||||
|
'mset:set multiple keys to muliple values' |
||||||
|
'msetnx:set multiple keys tom ultiple values, only if none of the keys exist' |
||||||
|
'multi:mark the start of a transaction block' |
||||||
|
'object:inspect the internals of Redis objects' |
||||||
|
'persist:remove the expiration from a key' |
||||||
|
'ping:ping the server' |
||||||
|
'psubscribe:listen for messages published to channels matching the given patterns' |
||||||
|
'publish:post a message to a channel' |
||||||
|
'punsubscribe:stop listening for messages posted to channels matching the given patterns' |
||||||
|
'quit:close the connection' |
||||||
|
'randomkey:return a random key from the keyspace' |
||||||
|
'rename:rename a key' |
||||||
|
'renamenx:rename a key, only if the new key does not exist' |
||||||
|
'rpop:remove and get the last element in a list' |
||||||
|
'rpoplpush:remove the last element in a list, append it to another list and return it' |
||||||
|
'rpush:append a value to a list' |
||||||
|
'rpushx:append a value to a list, only if the list exists' |
||||||
|
'sadd:add a member to a set' |
||||||
|
'save:synchronously save the dataset to disk' |
||||||
|
'scard:get the number of members in a set' |
||||||
|
'sdiff:subtract multiple sets' |
||||||
|
'sdiffstore:subtract multiple sets and store the resulting set in a key' |
||||||
|
'select:change the selected database for the current connection' |
||||||
|
'set:set the string value of a key' |
||||||
|
'setbit:sets or clears the bit at offset in the string value stored at key' |
||||||
|
'setex:set the value and expiration of a key' |
||||||
|
'setnx:set the value of a key, only if the key does not exist' |
||||||
|
'setrange:overwrite part of a string at key starting at the specified offset' |
||||||
|
'shutdown:synchronously save the dataset to disk and then shut down the server' |
||||||
|
'sinter:intersect multiple sets' |
||||||
|
'sinterstore:intersect multiple sets and store the resulting set in a key' |
||||||
|
'sismember:determine if a given value is a member of a set' |
||||||
|
'slaveof:make the server a slave of another instance, or promote it as master' |
||||||
|
'smembers:get all the members in a set' |
||||||
|
'smove:move a member from one set to another' |
||||||
|
'sort:sort the elements in a list, set or sorted set' |
||||||
|
'spop:remove and return a random member from a set' |
||||||
|
'srandmember:get a random member from a set' |
||||||
|
'srem:remove a member from a set' |
||||||
|
'strlen:get the length of the value stored in a key' |
||||||
|
'subscribe:listen for messages published to the given channels' |
||||||
|
'sunion:add multiple sets' |
||||||
|
'sunionstore:add multiple sets and store the resulting set in a key' |
||||||
|
'ttl:get the time to live for a key' |
||||||
|
'type:determine the type stored at key' |
||||||
|
'unsubscribe:stop listening for messages posted to the given channels' |
||||||
|
'unwatch:forget about all watched keys' |
||||||
|
'watch:watch the given keys to determine execution of the MULTI/EXEC block' |
||||||
|
'zadd:add a member to a sorted set, or update its score if it already exists' |
||||||
|
'zcard:get the number of members in a sorted set' |
||||||
|
'zcount:count the members in a sorted set with scores within the given values' |
||||||
|
'zincrby:increment the score of a member in a sorted set' |
||||||
|
'zinterstore:intersect multiple sorted sets and store the resulting sorted set in a new key' |
||||||
|
'zrange:return a range of members in a sorted set, by index' |
||||||
|
'zrangebyscore:return a range of members in a sorted set, by score' |
||||||
|
'zrank:determine the index of a member in a sorted set' |
||||||
|
'zrem:remove a member from a sorted set' |
||||||
|
'zremrangebyrank:remove all members in a sorted set within the given indexes' |
||||||
|
'zremrangebyscore:remove all members in a sorted set within the given scores' |
||||||
|
'zrevrange:return a range of membrs in a sorted set, by index, with scores ordered from high to low' |
||||||
|
'zrevrangebyscore:return a range of members in a sorted set, by score, with scores ordered from high to low' |
||||||
|
'zrevrank:determine the index of a member in a sorted set, with scores ordered from high to low' |
||||||
|
'zscore:get the score associated with the given member in a sorted set' |
||||||
|
'zunionstore:add multiple sorted sets and store te resulting sorted set in a new key' |
||||||
|
) |
||||||
|
|
||||||
|
local expl |
||||||
|
|
||||||
|
_arguments \ |
||||||
|
'(-v --version)'{-v,--version}'[show version]' \ |
||||||
|
'(-h --help)'{-h,--help}'[show help]' \ |
||||||
|
'*:: :->subcmds' && return 0 |
||||||
|
|
||||||
|
if (( CURRENT == 1 )); then |
||||||
|
_describe -t commands "redis-cli subcommand" _1st_arguments |
||||||
|
return |
||||||
|
fi |
||||||
@ -0,0 +1,147 @@ |
|||||||
|
#compdef rvm |
||||||
|
|
||||||
|
local curcontext="$curcontext" state line cmds ret=1 |
||||||
|
|
||||||
|
_arguments -C \ |
||||||
|
'(- 1 *)'{-v,--version}'[display version information]' \ |
||||||
|
'(-l|--level)'{-l,--level}'+[patch level to use with rvm use / install]:number' \ |
||||||
|
'(--prefix)--prefix[path for all rvm files (~/.rvm/), with trailing slash!]:path:_files' \ |
||||||
|
'(--bin)--bin[path for binaries to be placed (~/.rvm/bin/)]:path:_files' \ |
||||||
|
'(--source)--source[src directory to use (~/.rvm/src/)]:path:_files' \ |
||||||
|
'(--archives)--archives[directory for downladed files (~/.rvm/archives/)]:path:_files' \ |
||||||
|
'-S[Specify a script file to attempt to load and run (rubydo)]:file:_files' \ |
||||||
|
'-e[Execute code from the command line]:code' \ |
||||||
|
'(-G)-G[root gem path to use]:path:_files' \ |
||||||
|
'(--gems)--gems[Used to set the gems_flag, use with remove to remove gems]' \ |
||||||
|
'(--archive)--archive[Used to set the archive_flag, use with remove to remove archive]' \ |
||||||
|
'(--patch)--patch[With MRI Rubies you may specify one or more full paths to patches]' \ |
||||||
|
'(-C|--configure)'{-C,--configure}'=[custom configure options]' \ |
||||||
|
'(--nice)--nice[process niceness (for slow computers, default 0)]:number' \ |
||||||
|
'(--ree)--ree-options[Options passed directly to ree ./installer on the command line]:options' \ |
||||||
|
'(--head)--head[with update, updates rvm to git head version]' \ |
||||||
|
'(--rubygems)--rubygems[with update, updates rubygems for selected ruby]' \ |
||||||
|
'(--default)--default[with ruby select, sets a default ruby for new shells]' \ |
||||||
|
'(--debug)--debug[Toggle debug mode on for very verbose output]' \ |
||||||
|
'(--trace)--trace[Toggle trace mode on to see EVERYTHING rvm is doing]' \ |
||||||
|
'(--force)--force[Force install, removes old install & source before install]' \ |
||||||
|
'(--summary)--summary[Used with rubydo to print out a summary of the commands run]' \ |
||||||
|
'(--latest)--latest[with gemset --dump skips version strings for latest gem]' \ |
||||||
|
'(--gems)--gems[with uninstall/remove removes gems with the interpreter]' \ |
||||||
|
'(--docs)--docs[with install, attempt to generate ri after installation]' \ |
||||||
|
'(--reconfigure)--reconfigure[Force ./configure on install even if Makefile already exists]' \ |
||||||
|
'1: :->cmds' \ |
||||||
|
'*: :->args' && ret=0 |
||||||
|
|
||||||
|
case $state in |
||||||
|
cmds) |
||||||
|
cmds=( |
||||||
|
"version:show the rvm version installed in rvm_path" |
||||||
|
"use:setup current shell to use a specific ruby version" |
||||||
|
"reload:reload rvm source itself (useful after changing rvm source)" |
||||||
|
"implode:(seppuku) removes the rvm installation completely. This means everything in $rvm_path (~/.rvm)." |
||||||
|
"update:upgrades rvm to the latest version." |
||||||
|
"reset:remove current and stored default & system settings." |
||||||
|
"info :show the *current* environment information for current ruby" |
||||||
|
"current:print the *current* ruby version and the name of any gemset being used." |
||||||
|
"debug:show info plus additional information for common issues" |
||||||
|
"install:install one or many ruby versions" |
||||||
|
"uninstall:uninstall one or many ruby versions, leaves their sources" |
||||||
|
"remove:uninstall one or many ruby versions and remove their sources" |
||||||
|
"migrate:Lets you migrate all gemsets from one ruby to another." |
||||||
|
"upgrade:Lets you upgrade from one version of a ruby to another, including migrating your gemsets semi-automatically." |
||||||
|
"wrapper:generates a set of wrapper executables for a given ruby with the specified ruby and gemset combination. Used under the hood for passenger support and the like." |
||||||
|
"cleanup:Lets you remove stale source folders / archives and other miscellaneous data associated with rvm." |
||||||
|
"repair:Lets you repair parts of your environment e.g. wrappers, env files and and similar files (e.g. general maintenance)." |
||||||
|
"snapshot:Lets your backup / restore an rvm installation in a lightweight manner." |
||||||
|
"disk-usage:Tells you how much disk space rvm install is using." |
||||||
|
"tools:Provides general information about the ruby environment, primarily useful when scripting rvm." |
||||||
|
"docs:Tools to make installing ri and rdoc documentation easier." |
||||||
|
"rvmrc:Tools related to managing rvmrc trust and loading." |
||||||
|
"exec:runs an arbitrary command as a set operation." |
||||||
|
"ruby:runs a named ruby file against specified and/or all rubies" |
||||||
|
"gem:runs a gem command using selected ruby's 'gem'" |
||||||
|
"rake:runs a rake task against specified and/or all rubies" |
||||||
|
"tests:runs 'rake test' across selected ruby versions" |
||||||
|
"specs:runs 'rake spec' across selected ruby versions" |
||||||
|
"monitor:Monitor cwd for testing, run rake {spec,test} on changes." |
||||||
|
"gemset:gemsets: http://rvm.beginrescueend.com/gemsets/" |
||||||
|
"rubygems:Switches the installed version of rubygems for the current ruby." |
||||||
|
"gemdir:display the path to the current gem directory (GEM_HOME)." |
||||||
|
"srcdir:display the path to rvm source directory (may be yanked)" |
||||||
|
"fetch:Performs an archive / src fetch only of the selected ruby." |
||||||
|
"list:show currently installed rubies, interactive output." |
||||||
|
"package:Install a dependency package {readline,iconv,zlib,openssl}" |
||||||
|
"notes:Display notes, with operating system specifics." |
||||||
|
"export:Temporarily set an environment variable in the current shell." |
||||||
|
"unexport:Undo changes made to the environment by 'rvm export'." |
||||||
|
) |
||||||
|
_describe -t commands 'rvm command' cmds && ret=0 |
||||||
|
;; |
||||||
|
args) |
||||||
|
case $line[1] in |
||||||
|
(use|uninstall|remove|list) |
||||||
|
_values -S , 'rubies' $(rvm list strings | sed -e 's/ruby-\([^) ]*\)-\([^) ]*\)/ruby-\1-\2 \1-\2 \1/g') default system && ret=0 |
||||||
|
;; |
||||||
|
(install|fetch) |
||||||
|
_values -S , 'rubies' $(rvm list known_strings) && ret=0 |
||||||
|
;; |
||||||
|
gemset) |
||||||
|
if (( CURRENT == 3 )); then |
||||||
|
_values 'gemset_commands' \ |
||||||
|
'import' \ |
||||||
|
'export' \ |
||||||
|
'create' \ |
||||||
|
'copy' \ |
||||||
|
'rename' \ |
||||||
|
'empty' \ |
||||||
|
'delete' \ |
||||||
|
'name' \ |
||||||
|
'dir' \ |
||||||
|
'list' \ |
||||||
|
'list_all' \ |
||||||
|
'gemdir' \ |
||||||
|
'install' \ |
||||||
|
'pristine' \ |
||||||
|
'clear' \ |
||||||
|
'use' \ |
||||||
|
'update' \ |
||||||
|
'unpack' \ |
||||||
|
'globalcache' |
||||||
|
else |
||||||
|
_values -S , 'gemsets' $(rvm gemset list | grep -v gemset 2>/dev/null) |
||||||
|
fi |
||||||
|
ret=0 |
||||||
|
;; |
||||||
|
package) |
||||||
|
if (( CURRENT == 3 )); then |
||||||
|
_values 'package_commands' \ |
||||||
|
'install' \ |
||||||
|
'uninstall' |
||||||
|
else |
||||||
|
_values 'packages' \ |
||||||
|
'readline' \ |
||||||
|
'iconv' \ |
||||||
|
'curl' \ |
||||||
|
'openssl' \ |
||||||
|
'zlib' \ |
||||||
|
'autoconf' \ |
||||||
|
'ncurses' \ |
||||||
|
'pkgconfig' \ |
||||||
|
'gettext' \ |
||||||
|
'glib' \ |
||||||
|
'mono' \ |
||||||
|
'llvm' \ |
||||||
|
'libxml2' \ |
||||||
|
'libxslt' \ |
||||||
|
'libyaml' |
||||||
|
fi |
||||||
|
ret=0 |
||||||
|
;; |
||||||
|
*) |
||||||
|
(( ret )) && _message 'no more arguments' |
||||||
|
;; |
||||||
|
esac |
||||||
|
;; |
||||||
|
esac |
||||||
|
|
||||||
|
return ret |
||||||
@ -0,0 +1,44 @@ |
|||||||
|
alias rubies='rvm list rubies' |
||||||
|
alias gemsets='rvm gemset list' |
||||||
|
|
||||||
|
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" |
||||||
|
} |
||||||
@ -1,23 +1,62 @@ |
|||||||
|
# |
||||||
|
# INSTRUCTIONS |
||||||
|
# |
||||||
|
# To enabled agent forwarding support add the following to |
||||||
|
# your .zshrc file: |
||||||
|
# |
||||||
|
# zstyle :omz:plugins:ssh-agent agent-forwarding on |
||||||
|
# |
||||||
|
# To load multiple identies use the identities style, For |
||||||
|
# example: |
||||||
|
# |
||||||
|
# zstyle :omz:plugins:ssh-agent id_rsa id_rsa2 id_github |
||||||
|
# |
||||||
|
# |
||||||
|
# CREDITS |
||||||
|
# |
||||||
# Based on code from Joseph M. Reagle |
# Based on code from Joseph M. Reagle |
||||||
# http://www.cygwin.com/ml/cygwin/2001-06/msg00537.html |
# http://www.cygwin.com/ml/cygwin/2001-06/msg00537.html |
||||||
|
# |
||||||
|
# Agent forwarding support based on ideas from |
||||||
|
# Florent Thoumie and Jonas Pfenniger |
||||||
|
# |
||||||
|
|
||||||
local SSH_ENV=$HOME/.ssh/environment-$HOST |
local _plugin__ssh_env=$HOME/.ssh/environment-$HOST |
||||||
|
local _plugin__forwarding |
||||||
|
|
||||||
function start_agent { |
function _plugin__start_agent() |
||||||
/usr/bin/env ssh-agent | sed 's/^echo/#echo/' > ${SSH_ENV} |
{ |
||||||
chmod 600 ${SSH_ENV} |
local -a identities |
||||||
. ${SSH_ENV} > /dev/null |
|
||||||
/usr/bin/ssh-add; |
# start ssh-agent and setup environment |
||||||
|
/usr/bin/env ssh-agent | sed 's/^echo/#echo/' > ${_plugin__ssh_env} |
||||||
|
chmod 600 ${_plugin__ssh_env} |
||||||
|
. ${_plugin__ssh_env} > /dev/null |
||||||
|
|
||||||
|
# load identies |
||||||
|
zstyle -a :omz:plugins:ssh-agent identities identities |
||||||
|
echo starting... |
||||||
|
/usr/bin/ssh-add $HOME/.ssh/${^identities} |
||||||
} |
} |
||||||
|
|
||||||
# Source SSH settings, if applicable |
# test if agent-forwarding is enabled |
||||||
|
zstyle -b :omz:plugins:ssh-agent agent-forwarding _plugin__forwarding |
||||||
|
if [[ ${_plugin__forwarding} == "yes" && -n "$SSH_AUTH_SOCK" ]]; then |
||||||
|
# Add a nifty symlink for screen/tmux if agent forwarding |
||||||
|
[[ -L $SSH_AUTH_SOCK ]] || ln -sf "$SSH_AUTH_SOCK" /tmp/ssh-agent-$USER-screen |
||||||
|
|
||||||
if [ -f "${SSH_ENV}" ]; then |
elif [ -f "${_plugin__ssh_env}" ]; then |
||||||
. ${SSH_ENV} > /dev/null |
# Source SSH settings, if applicable |
||||||
|
. ${_plugin__ssh_env} > /dev/null |
||||||
ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || { |
ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || { |
||||||
start_agent; |
_plugin__start_agent; |
||||||
} |
} |
||||||
else |
else |
||||||
start_agent; |
_plugin__start_agent; |
||||||
fi |
fi |
||||||
|
|
||||||
|
# tidy up after ourselves |
||||||
|
unfunction _plugin__start_agent |
||||||
|
unset _plugin__forwarding |
||||||
|
unset _plugin__ssh_env |
||||||
|
|
||||||
|
|||||||
@ -0,0 +1,280 @@ |
|||||||
|
#compdef task |
||||||
|
# |
||||||
|
# zsh completion for taskwarrior |
||||||
|
# |
||||||
|
# Copyright 2010 - 2011 Johannes Schlatow |
||||||
|
# Copyright 2009 P.C. Shyamshankar |
||||||
|
# All rights reserved. |
||||||
|
# |
||||||
|
# This script is part of the taskwarrior project. |
||||||
|
# |
||||||
|
# This program is free software; you can redistribute it and/or modify it under |
||||||
|
# the terms of the GNU General Public License as published by the Free Software |
||||||
|
# Foundation; either version 2 of the License, or (at your option) any later |
||||||
|
# version. |
||||||
|
# |
||||||
|
# This program is distributed in the hope that it will be useful, but WITHOUT |
||||||
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
||||||
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
||||||
|
# details. |
||||||
|
# |
||||||
|
# You should have received a copy of the GNU General Public License along with |
||||||
|
# this program; if not, write to the |
||||||
|
# |
||||||
|
# Free Software Foundation, Inc., |
||||||
|
# 51 Franklin Street, Fifth Floor, |
||||||
|
# Boston, MA |
||||||
|
# 02110-1301 |
||||||
|
# USA |
||||||
|
# |
||||||
|
typeset -g _task_cmds _task_projects _task_tags _task_config _task_modifiers |
||||||
|
_task_projects=($(task _projects)) |
||||||
|
_task_tags=($(task _tags)) |
||||||
|
_task_ids=($(task _ids)) |
||||||
|
_task_config=($(task _config)) |
||||||
|
_task_modifiers=( |
||||||
|
'before' \ |
||||||
|
'after' \ |
||||||
|
'none' \ |
||||||
|
'any' \ |
||||||
|
'is' \ |
||||||
|
'isnt' \ |
||||||
|
'has' \ |
||||||
|
'hasnt' \ |
||||||
|
'startswith' \ |
||||||
|
'endswith' \ |
||||||
|
'word' \ |
||||||
|
'noword' |
||||||
|
) |
||||||
|
_task_cmds=($(task _commands)) |
||||||
|
_task_zshcmds=( ${(f)"$(task _zshcommands)"} ) |
||||||
|
|
||||||
|
|
||||||
|
_task_idCmds=( |
||||||
|
'append' \ |
||||||
|
'prepend' \ |
||||||
|
'annotate' \ |
||||||
|
'denotate' \ |
||||||
|
'edit' \ |
||||||
|
'duplicate' \ |
||||||
|
'info' \ |
||||||
|
'start' \ |
||||||
|
'stop' \ |
||||||
|
'done' |
||||||
|
) |
||||||
|
|
||||||
|
_task_idCmdsDesc=( |
||||||
|
'append:Appends more description to an existing task.' \ |
||||||
|
'prepend:Prepends more description to an existing task.' \ |
||||||
|
'annotate:Adds an annotation to an existing task.' \ |
||||||
|
'denotate:Deletes an annotation of an existing task.' \ |
||||||
|
'edit:Launches an editor to let you modify a task directly.' \ |
||||||
|
'duplicate:Duplicates the specified task, and allows modifications.' \ |
||||||
|
'info:Shows all data, metadata for specified task.' \ |
||||||
|
'start:Marks specified task as started.' \ |
||||||
|
'stop:Removes the start time from a task.' \ |
||||||
|
'done:Marks the specified task as completed.' |
||||||
|
) |
||||||
|
|
||||||
|
_task() { |
||||||
|
_arguments -s -S \ |
||||||
|
"*::task command:_task_commands" |
||||||
|
return 0 |
||||||
|
} |
||||||
|
|
||||||
|
local -a reply args word |
||||||
|
word=$'[^\0]#\0' |
||||||
|
|
||||||
|
# priorities |
||||||
|
local -a task_priorities |
||||||
|
_regex_words values 'task priorities' \ |
||||||
|
'H:High' \ |
||||||
|
'M:Middle' \ |
||||||
|
'L:Low' |
||||||
|
task_priorities=("$reply[@]") |
||||||
|
|
||||||
|
# projects |
||||||
|
local -a task_projects |
||||||
|
task_projects=( |
||||||
|
/"$word"/ |
||||||
|
":values:task projects:compadd -a _task_projects" |
||||||
|
) |
||||||
|
|
||||||
|
local -a _task_dates |
||||||
|
_regex_words values 'task dates' \ |
||||||
|
'tod*ay:Today' \ |
||||||
|
'yes*terday:Yesterday' \ |
||||||
|
'tom*orrow:Tomorrow' \ |
||||||
|
'sow:Start of week' \ |
||||||
|
'soww:Start of work week' \ |
||||||
|
'socw:Start of calendar week' \ |
||||||
|
'som:Start of month' \ |
||||||
|
'soy:Start of year' \ |
||||||
|
'eow:End of week' \ |
||||||
|
'eoww:End of work week' \ |
||||||
|
'eocw:End of calendar week' \ |
||||||
|
'eom:End of month' \ |
||||||
|
'eoy:End of year' \ |
||||||
|
'mon:Monday' \ |
||||||
|
'tue:Tuesday'\ |
||||||
|
'wed:Wednesday' \ |
||||||
|
'thu:Thursday' \ |
||||||
|
'fri:Friday' \ |
||||||
|
'sat:Saturday' \ |
||||||
|
'sun:Sunday' |
||||||
|
_task_dates=("$reply[@]") |
||||||
|
|
||||||
|
local -a _task_reldates |
||||||
|
_regex_words values 'task reldates' \ |
||||||
|
'hrs:n hours' \ |
||||||
|
'day:n days' \ |
||||||
|
'1st:first' \ |
||||||
|
'2nd:second' \ |
||||||
|
'3rd:third' \ |
||||||
|
'th:4th, 5th, etc.' \ |
||||||
|
'wks:weeks' |
||||||
|
_task_reldates=("$reply[@]") |
||||||
|
|
||||||
|
task_dates=( |
||||||
|
\( "$_task_dates[@]" \| |
||||||
|
\( /$'[0-9][0-9]#'/- \( "$_task_reldates[@]" \) \) |
||||||
|
\) |
||||||
|
) |
||||||
|
|
||||||
|
_regex_words values 'task frequencies' \ |
||||||
|
'daily:Every day' \ |
||||||
|
'day:Every day' \ |
||||||
|
'weekdays:Every day skipping weekend days' \ |
||||||
|
'weekly:Every week' \ |
||||||
|
'biweekly:Every two weeks' \ |
||||||
|
'fortnight:Every two weeks' \ |
||||||
|
'quarterly:Every three months' \ |
||||||
|
'semiannual:Every six months' \ |
||||||
|
'annual:Every year' \ |
||||||
|
'yearly:Every year' \ |
||||||
|
'biannual:Every two years' \ |
||||||
|
'biyearly:Every two years' |
||||||
|
_task_freqs=("$reply[@]") |
||||||
|
|
||||||
|
local -a _task_frequencies |
||||||
|
_regex_words values 'task frequencies' \ |
||||||
|
'd:days' \ |
||||||
|
'w:weeks' \ |
||||||
|
'q:quarters' \ |
||||||
|
'y:years' |
||||||
|
_task_frequencies=("$reply[@]") |
||||||
|
|
||||||
|
task_freqs=( |
||||||
|
\( "$_task_freqs[@]" \| |
||||||
|
\( /$'[0-9][0-9]#'/- \( "$_task_frequencies[@]" \) \) |
||||||
|
\) |
||||||
|
) |
||||||
|
|
||||||
|
# attributes |
||||||
|
local -a task_attributes |
||||||
|
_regex_words -t ':' default 'task attributes' \ |
||||||
|
'pro*ject:Project name:$task_projects' \ |
||||||
|
'du*e:Due date:$task_dates' \ |
||||||
|
'wa*it:Date until task becomes pending:$task_dates' \ |
||||||
|
're*cur:Recurrence frequency:$task_freqs' \ |
||||||
|
'pri*ority:priority:$task_priorities' \ |
||||||
|
'un*til:Recurrence end date:$task_dates' \ |
||||||
|
'fg:Foreground color' \ |
||||||
|
'bg:Background color' \ |
||||||
|
'li*mit:Desired number of rows in report' |
||||||
|
task_attributes=("$reply[@]") |
||||||
|
|
||||||
|
args=( |
||||||
|
\( "$task_attributes[@]" \| |
||||||
|
\( /'(project|due|wait|recur|priority|until|fg|bg|limit).'/- \( /$'[^:]#:'/ ":default:modifiers:compadd -S ':' -a _task_modifiers" \) \) \| |
||||||
|
\( /'(rc).'/- \( /$'[^:]#:'/ ":arguments:config:compadd -S ':' -a _task_config" \) \) \| |
||||||
|
\( /'(+|-)'/- \( /"$word"/ ":values:remove tag:compadd -a _task_tags" \) \) \| |
||||||
|
\( /"$word"/ \) |
||||||
|
\) \# |
||||||
|
) |
||||||
|
_regex_arguments _task_attributes "${args[@]}" |
||||||
|
|
||||||
|
## task commands |
||||||
|
|
||||||
|
# default completion |
||||||
|
(( $+functions[_task_default] )) || |
||||||
|
_task_default() { |
||||||
|
_task_attributes "$@" |
||||||
|
} |
||||||
|
|
||||||
|
# commands expecting an ID |
||||||
|
(( $+functions[_task_id] )) || |
||||||
|
_task_id() { |
||||||
|
if (( CURRENT < 3 )); then |
||||||
|
# update IDs |
||||||
|
_task_zshids=( ${(f)"$(task _zshids)"} ) |
||||||
|
_describe -t values 'task IDs' _task_zshids |
||||||
|
else |
||||||
|
_task_attributes "$@" |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
# merge completion |
||||||
|
(( $+functions[_task_merge] )) || |
||||||
|
_task_merge() { |
||||||
|
# TODO match URIs in .taskrc |
||||||
|
_files |
||||||
|
} |
||||||
|
|
||||||
|
# push completion |
||||||
|
(( $+functions[_task_push] )) || |
||||||
|
_task_push() { |
||||||
|
# TODO match URIs in .taskrc |
||||||
|
_files |
||||||
|
} |
||||||
|
|
||||||
|
# pull completion |
||||||
|
(( $+functions[_task_pull] )) || |
||||||
|
_task_pull() { |
||||||
|
# TODO match URIs in .taskrc |
||||||
|
_files |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
# modify (task [0-9]* ...) completion |
||||||
|
(( $+functions[_task_modify] )) || |
||||||
|
_task_modify() { |
||||||
|
_describe -t commands 'task command' _task_idCmdsDesc |
||||||
|
_task_attributes "$@" |
||||||
|
} |
||||||
|
|
||||||
|
## first level completion => task sub-command completion |
||||||
|
(( $+functions[_task_commands] )) || |
||||||
|
_task_commands() { |
||||||
|
local cmd ret=1 |
||||||
|
if (( CURRENT == 1 )); then |
||||||
|
# update IDs |
||||||
|
_task_zshids=( ${(f)"$(task _zshids)"} ) |
||||||
|
|
||||||
|
_describe -t commands 'task command' _task_zshcmds |
||||||
|
_describe -t values 'task IDs' _task_zshids |
||||||
|
# TODO match more than one ID |
||||||
|
elif [[ $words[1] =~ ^[0-9]*$ ]] then |
||||||
|
_call_function ret _task_modify |
||||||
|
return ret |
||||||
|
else |
||||||
|
# local curcontext="${curcontext}" |
||||||
|
# cmd="${_task_cmds[(r)$words[1]:*]%%:*}" |
||||||
|
cmd="${_task_cmds[(r)$words[1]]}" |
||||||
|
idCmd="${(M)_task_idCmds[@]:#$words[1]}" |
||||||
|
if (( $#cmd )); then |
||||||
|
# curcontext="${curcontext%:*:*}:task-${cmd}" |
||||||
|
|
||||||
|
if (( $#idCmd )); then |
||||||
|
_call_function ret _task_id |
||||||
|
else |
||||||
|
_call_function ret _task_${cmd} || |
||||||
|
_call_function ret _task_default || |
||||||
|
_message "No command remaining." |
||||||
|
fi |
||||||
|
else |
||||||
|
_message "Unknown subcommand ${cmd}" |
||||||
|
fi |
||||||
|
return ret |
||||||
|
fi |
||||||
|
} |
||||||
@ -0,0 +1,21 @@ |
|||||||
|
################################################################################ |
||||||
|
# Author: Pete Clark |
||||||
|
# Email: pete[dot]clark[at]gmail[dot]com |
||||||
|
# Version: 0.1 (05/24/2011) |
||||||
|
# License: WTFPL<http://sam.zoy.org/wtfpl/> |
||||||
|
# |
||||||
|
# This oh-my-zsh plugin adds smart tab completion for |
||||||
|
# TaskWarrior<http://taskwarrior.org/>. It uses the zsh tab completion |
||||||
|
# script (_task) distributed with TaskWarrior for the completion definitions. |
||||||
|
# |
||||||
|
# Typing task[tabtab] will give you a list of current tasks, task 66[tabtab] |
||||||
|
# gives a list of available modifications for that task, etc. |
||||||
|
################################################################################ |
||||||
|
|
||||||
|
zstyle ':completion:*:*:task:*' verbose yes |
||||||
|
zstyle ':completion:*:*:task:*:descriptions' format '%U%B%d%b%u' |
||||||
|
|
||||||
|
zstyle ':completion:*:*:task:*' group-name '' |
||||||
|
|
||||||
|
alias t=task |
||||||
|
compdef _task t=task |
||||||
@ -0,0 +1,4 @@ |
|||||||
|
#compdef thor |
||||||
|
#autoload |
||||||
|
|
||||||
|
compadd `thor list | grep thor | cut -d " " -f 2` |
||||||
@ -1,3 +0,0 @@ |
|||||||
fpath=($ZSH/plugins/vagrant $fpath) |
|
||||||
autoload -U compinit |
|
||||||
compinit -i |
|
||||||
@ -0,0 +1,12 @@ |
|||||||
|
## Aliases |
||||||
|
|
||||||
|
alias ys="yum search" # search package |
||||||
|
alias yp="yum info" # show package info |
||||||
|
alias yl="yum list" # list packages |
||||||
|
alias yli="yum list installed" # print all installed packages |
||||||
|
|
||||||
|
alias yu="sudo yum update" # upgrate packages |
||||||
|
alias yi="sudo yum install" # install package |
||||||
|
alias yr="sudo yum remove" # remove package |
||||||
|
alias yrl="sudo yum remove --remove-leaves" # remove package and leaves |
||||||
|
alias yc="sudo yum clean all" # clean cache |
||||||
@ -0,0 +1,22 @@ |
|||||||
|
|
||||||
|
local user='%{$fg[magenta]%}%n@%{$fg[magenta]%}%m%{$reset_color%}' |
||||||
|
local pwd='%{$fg[blue]%}%~%{$reset_color%}' |
||||||
|
local rvm='%{$fg[green]%}‹$(rvm-prompt i v g)›%{$reset_color%}' |
||||||
|
local return_code='%(?..%{$fg[red]%}%? ↵%{$reset_color%})' |
||||||
|
local git_branch='$(git_prompt_status)%{$reset_color%}$(git_prompt_info)%{$reset_color%}' |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚" |
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹" |
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖" |
||||||
|
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭" |
||||||
|
|
||||||
|
PROMPT="${user} ${pwd}$ " |
||||||
|
RPROMPT="${return_code} ${git_branch} ${rvm}" |
||||||
|
|
||||||
@ -0,0 +1,20 @@ |
|||||||
|
# https://github.com/blinks zsh theme |
||||||
|
|
||||||
|
function _prompt_char() { |
||||||
|
if $(git rev-parse --is-inside-work-tree >/dev/null 2>&1); then |
||||||
|
echo "%{%F{blue}%}±%{%f%k%b%}" |
||||||
|
else |
||||||
|
echo ' ' |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX=" [%{%B%F{blue}%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{%f%k%b%K{black}%B%F{green}%}]" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY=" %{%F{red}%}*%{%f%k%b%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||||
|
|
||||||
|
PROMPT='%{%f%k%b%} |
||||||
|
%{%K{black}%B%F{green}%}%n%{%B%F{blue}%}@%{%B%F{cyan}%}%m%{%B%F{green}%} %{%b%F{yellow}%K{black}%}%~%{%B%F{green}%}$(git_prompt_info)%E%{%f%k%b%} |
||||||
|
%{%K{black}%}$(_prompt_char)%{%K{black}%} %#%{%f%k%b%} ' |
||||||
|
|
||||||
|
RPROMPT='!%{%B%F{cyan}%}%!%{%f%k%b%}' |
||||||
@ -0,0 +1,14 @@ |
|||||||
|
if [ $UID -eq 0 ]; then NCOLOR="red"; else NCOLOR="green"; fi |
||||||
|
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||||
|
|
||||||
|
PROMPT='%{$fg[$NCOLOR]%}%n%{$reset_color%}@%{$fg[cyan]%}%m\ |
||||||
|
%{$reset_color%}:%{$fg[magenta]%}%~\ |
||||||
|
$(git_prompt_info) \ |
||||||
|
%{$fg[red]%}%(!.#.»)%{$reset_color%} ' |
||||||
|
PROMPT2='%{$fg[red]%}\ %{$reset_color%}' |
||||||
|
RPS1='${return_code}' |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}(" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[green]%}○%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%}⚡%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$fg[yellow]%})%{$reset_color%}" |
||||||
@ -0,0 +1,10 @@ |
|||||||
|
PROMPT=$' |
||||||
|
%{$fg[blue]%}%/%{$reset_color%} $(git_prompt_info)%{$fg[white]%}[%n@%m]%{$reset_color%} %{$fg[white]%}[%T]%{$reset_color%} |
||||||
|
%{$fg_bold[black]%}>%{$reset_color%} ' |
||||||
|
|
||||||
|
PROMPT2="%{$fg_blod[black]%}%_> %{$reset_color%}" |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[green]%}[" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="]%{$reset_color%} " |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}*%{$fg[green]%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||||
@ -0,0 +1,6 @@ |
|||||||
|
PROMPT='%{$fg_bold[green]%}%p %{$fg[cyan]%}%c%{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX=" (%{$fg[red]%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" |
||||||
@ -0,0 +1,19 @@ |
|||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}[" |
||||||
|
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 "$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_PREFIX$(current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX" |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
#RVM and git settings |
||||||
|
if [[ -s ~/.rvm/scripts/rvm ]] ; then |
||||||
|
RPS1='$(git_custom_status)%{$fg[red]%}[`~/.rvm/bin/rvm-prompt`]%{$reset_color%} $EPS1' |
||||||
|
fi |
||||||
|
|
||||||
|
PROMPT='%{$fg[cyan]%}[%~% ]%(?.%{$fg[green]%}.%{$fg[red]%})%B$%b ' |
||||||
@ -0,0 +1,26 @@ |
|||||||
|
# ZSH THEME Preview: https://skitch.com/huyy/rk979/humza.zshtheme |
||||||
|
|
||||||
|
let TotalBytes=0 |
||||||
|
for Bytes in $(ls -l | grep "^-" | awk '{ print $5 }') |
||||||
|
do |
||||||
|
let TotalBytes=$TotalBytes+$Bytes |
||||||
|
done |
||||||
|
# should it say b, kb, Mb, or Gb |
||||||
|
if [ $TotalBytes -lt 1024 ]; then |
||||||
|
TotalSize=$(echo -e "scale=3 \n$TotalBytes \nquit" | bc) |
||||||
|
suffix="b" |
||||||
|
elif [ $TotalBytes -lt 1048576 ]; then |
||||||
|
TotalSize=$(echo -e "scale=3 \n$TotalBytes/1024 \nquit" | bc) |
||||||
|
suffix="kb" |
||||||
|
elif [ $TotalBytes -lt 1073741824 ]; then |
||||||
|
TotalSize=$(echo -e "scale=3 \n$TotalBytes/1048576 \nquit" | bc) |
||||||
|
suffix="Mb" |
||||||
|
else |
||||||
|
TotalSize=$(echo -e "scale=3 \n$TotalBytes/1073741824 \nquit" | bc) |
||||||
|
suffix="Gb" |
||||||
|
fi |
||||||
|
|
||||||
|
PROMPT='%{$reset_color%}%n %{$fg[green]%}{%{$reset_color%}%~%{$fg[green]%}}%{$reset_color%}$(git_prompt_info) greetings, earthling %{$fg[green]%}[%{$reset_color%}%{$TotalSize%}%{$suffix%}%{$fg[green]%}]%{$fg[red]%}$%{$reset_color%} ☞ ' |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[red]%}±(" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX=");%{$reset_color%}" |
||||||
@ -0,0 +1,4 @@ |
|||||||
|
PROMPT=$'%{$fg[green]%}%n@%m: %{$reset_color%}%{$fg[blue]%}%/%{$reset_color%} |
||||||
|
%{$fg_bold[red]%}➜ %{$reset_color%} ' |
||||||
|
|
||||||
|
PROMPT2="%{$fg_blod[black]%}%_> %{$reset_color%}" |
||||||
@ -0,0 +1,137 @@ |
|||||||
|
function precmd { |
||||||
|
local TERMWIDTH |
||||||
|
(( TERMWIDTH = ${COLUMNS} - 1 )) |
||||||
|
|
||||||
|
|
||||||
|
### |
||||||
|
# Truncate the path if it's too long. |
||||||
|
|
||||||
|
PR_FILLBAR="" |
||||||
|
PR_PWDLEN="" |
||||||
|
|
||||||
|
local promptsize=${#${(%):---(%n@%m:%l)---()--}} |
||||||
|
local rubyprompt=`rvm_prompt_info` |
||||||
|
local rubypromptsize=${#${rubyprompt}} |
||||||
|
local pwdsize=${#${(%):-%~}} |
||||||
|
|
||||||
|
if [[ "$promptsize + $rubypromptsize + $pwdsize" -gt $TERMWIDTH ]]; then |
||||||
|
((PR_PWDLEN=$TERMWIDTH - $promptsize)) |
||||||
|
else |
||||||
|
PR_FILLBAR="\${(l.(($TERMWIDTH - ($promptsize + $rubypromptsize + $pwdsize)))..${PR_HBAR}.)}" |
||||||
|
fi |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
setopt extended_glob |
||||||
|
preexec () { |
||||||
|
if [[ "$TERM" == "screen" ]]; then |
||||||
|
local CMD=${1[(wr)^(*=*|sudo|-*)]} |
||||||
|
echo -n "\ek$CMD\e\\" |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
setprompt () { |
||||||
|
### |
||||||
|
# Need this so the prompt will work. |
||||||
|
|
||||||
|
setopt prompt_subst |
||||||
|
|
||||||
|
|
||||||
|
### |
||||||
|
# See if we can use colors. |
||||||
|
|
||||||
|
autoload colors zsh/terminfo |
||||||
|
if [[ "$terminfo[colors]" -ge 8 ]]; then |
||||||
|
colors |
||||||
|
fi |
||||||
|
for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE GREY; do |
||||||
|
eval PR_$color='%{$terminfo[bold]$fg[${(L)color}]%}' |
||||||
|
eval PR_LIGHT_$color='%{$fg[${(L)color}]%}' |
||||||
|
(( count = $count + 1 )) |
||||||
|
done |
||||||
|
PR_NO_COLOUR="%{$terminfo[sgr0]%}" |
||||||
|
|
||||||
|
### |
||||||
|
# Modify Git prompt |
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[green]%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚" |
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹" |
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖" |
||||||
|
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭" |
||||||
|
|
||||||
|
### |
||||||
|
# See if we can use extended characters to look nicer. |
||||||
|
|
||||||
|
typeset -A altchar |
||||||
|
set -A altchar ${(s..)terminfo[acsc]} |
||||||
|
PR_SET_CHARSET="%{$terminfo[enacs]%}" |
||||||
|
PR_SHIFT_IN="%{$terminfo[smacs]%}" |
||||||
|
PR_SHIFT_OUT="%{$terminfo[rmacs]%}" |
||||||
|
PR_HBAR=${altchar[q]:--} |
||||||
|
PR_ULCORNER=${altchar[l]:--} |
||||||
|
PR_LLCORNER=${altchar[m]:--} |
||||||
|
PR_LRCORNER=${altchar[j]:--} |
||||||
|
PR_URCORNER=${altchar[k]:--} |
||||||
|
|
||||||
|
|
||||||
|
### |
||||||
|
# Decide if we need to set titlebar text. |
||||||
|
|
||||||
|
case $TERM in |
||||||
|
xterm*) |
||||||
|
PR_TITLEBAR=$'%{\e]0;%(!.-=*[ROOT]*=- | .)%n@%m:%~ | ${COLUMNS}x${LINES} | %y\a%}' |
||||||
|
;; |
||||||
|
screen) |
||||||
|
PR_TITLEBAR=$'%{\e_screen \005 (\005t) | %(!.-=[ROOT]=- | .)%n@%m:%~ | ${COLUMNS}x${LINES} | %y\e\\%}' |
||||||
|
;; |
||||||
|
*) |
||||||
|
PR_TITLEBAR='' |
||||||
|
;; |
||||||
|
esac |
||||||
|
|
||||||
|
|
||||||
|
### |
||||||
|
# Decide whether to set a screen title |
||||||
|
if [[ "$TERM" == "screen" ]]; then |
||||||
|
PR_STITLE=$'%{\ekzsh\e\\%}' |
||||||
|
else |
||||||
|
PR_STITLE='' |
||||||
|
fi |
||||||
|
|
||||||
|
|
||||||
|
### |
||||||
|
# Finally, the prompt. |
||||||
|
|
||||||
|
PROMPT='$PR_SET_CHARSET$PR_STITLE${(e)PR_TITLEBAR}\ |
||||||
|
$PR_CYAN$PR_SHIFT_IN$PR_ULCORNER$PR_HBAR$PR_SHIFT_OUT$PR_GREY(\ |
||||||
|
$PR_GREEN%$PR_PWDLEN<...<%~%<<\ |
||||||
|
$PR_GREY)`rvm_prompt_info`$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_HBAR${(e)PR_FILLBAR}$PR_HBAR$PR_SHIFT_OUT$PR_GREY(\ |
||||||
|
$PR_CYAN%(!.%SROOT%s.%n)$PR_GREY@$PR_GREEN%m:%l\ |
||||||
|
$PR_GREY)$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_URCORNER$PR_SHIFT_OUT\ |
||||||
|
|
||||||
|
$PR_CYAN$PR_SHIFT_IN$PR_LLCORNER$PR_BLUE$PR_HBAR$PR_SHIFT_OUT(\ |
||||||
|
$PR_YELLOW%D{%H:%M:%S}\ |
||||||
|
$PR_LIGHT_BLUE%{$reset_color%}`git_prompt_info``git_prompt_status`$PR_BLUE)$PR_CYAN$PR_SHIFT_IN$PR_HBAR\ |
||||||
|
$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\ |
||||||
|
>$PR_NO_COLOUR ' |
||||||
|
|
||||||
|
# display exitcode on the right when >0 |
||||||
|
return_code="%(?..%{$fg[red]%}%? ↵ %{$reset_color%})" |
||||||
|
RPROMPT=' $return_code$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_BLUE$PR_HBAR$PR_SHIFT_OUT\ |
||||||
|
($PR_YELLOW%D{%a,%b%d}$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_CYAN$PR_LRCORNER$PR_SHIFT_OUT$PR_NO_COLOUR' |
||||||
|
|
||||||
|
PS2='$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\ |
||||||
|
$PR_BLUE$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT(\ |
||||||
|
$PR_LIGHT_GREEN%_$PR_BLUE)$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT\ |
||||||
|
$PR_CYAN$PR_SHIFT_IN$PR_HBAR$PR_SHIFT_OUT$PR_NO_COLOUR ' |
||||||
|
} |
||||||
|
|
||||||
|
setprompt |
||||||
@ -0,0 +1,8 @@ |
|||||||
|
#PROMPT='%{$fg_bold[red]%}➜ %{$fg_bold[green]%}%p %{$fg[cyan]%}%c %{$fg_bold[blue]%}$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}' |
||||||
|
PROMPT="%{$fg_bold[cyan]%}%T%{$fg_bold[green]%} %{$fg_bold[white]%}%n%{$fg[magenta]%}@%{$fg_bold[white]%}%m %{$fg_bold[green]%}%d |
||||||
|
%{$fg_bold[yellow]%}%% %{$reset_color%}" |
||||||
|
|
||||||
|
#ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}" |
||||||
|
#ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||||
|
#ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}" |
||||||
|
#ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" |
||||||
@ -0,0 +1,46 @@ |
|||||||
|
# ------------------------------------------------------------------------ |
||||||
|
# Juan G. Hurtado oh-my-zsh theme |
||||||
|
# (Needs Git plugin for current_branch method) |
||||||
|
# ------------------------------------------------------------------------ |
||||||
|
|
||||||
|
# Color shortcuts |
||||||
|
RED=$fg[red] |
||||||
|
YELLOW=$fg[yellow] |
||||||
|
GREEN=$fg[green] |
||||||
|
WHITE=$fg[white] |
||||||
|
BLUE=$fg[blue] |
||||||
|
RED_BOLD=$fg_bold[red] |
||||||
|
YELLOW_BOLD=$fg_bold[yellow] |
||||||
|
GREEN_BOLD=$fg_bold[green] |
||||||
|
WHITE_BOLD=$fg_bold[white] |
||||||
|
BLUE_BOLD=$fg_bold[blue] |
||||||
|
RESET_COLOR=$reset_color |
||||||
|
|
||||||
|
# Format for git_prompt_info() |
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
||||||
|
|
||||||
|
# Format for parse_git_dirty() |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$RED%}(*)" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||||
|
|
||||||
|
# Format for git_prompt_status() |
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED=" %{$RED%}unmerged" |
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED=" %{$RED%}deleted" |
||||||
|
ZSH_THEME_GIT_PROMPT_RENAMED=" %{$YELLOW%}renamed" |
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED=" %{$YELLOW%}modified" |
||||||
|
ZSH_THEME_GIT_PROMPT_ADDED=" %{$GREEN%}added" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED=" %{$WHITE%}untracked" |
||||||
|
|
||||||
|
# Format for git_prompt_ahead() |
||||||
|
ZSH_THEME_GIT_PROMPT_AHEAD=" %{$RED%}(!)" |
||||||
|
|
||||||
|
# Format for git_prompt_long_sha() and git_prompt_short_sha() |
||||||
|
ZSH_THEME_GIT_PROMPT_SHA_BEFORE=" %{$WHITE%}[%{$YELLOW%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$WHITE%}]" |
||||||
|
|
||||||
|
# Prompt format |
||||||
|
PROMPT=' |
||||||
|
%{$GREEN_BOLD%}%n@%m%{$WHITE%}:%{$YELLOW%}%~%u$(parse_git_dirty)$(git_prompt_ahead)%{$RESET_COLOR%} |
||||||
|
%{$BLUE%}>%{$RESET_COLOR%} ' |
||||||
|
RPROMPT='%{$GREEN_BOLD%}$(current_branch)$(git_prompt_short_sha)$(git_prompt_status)%{$RESET_COLOR%}' |
||||||
@ -0,0 +1,21 @@ |
|||||||
|
autoload -U colors && colors |
||||||
|
|
||||||
|
autoload -Uz vcs_info |
||||||
|
|
||||||
|
zstyle ':vcs_info:*' stagedstr '%F{green}●' |
||||||
|
zstyle ':vcs_info:*' unstagedstr '%F{yellow}●' |
||||||
|
zstyle ':vcs_info:*' check-for-changes true |
||||||
|
zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{11}%r' |
||||||
|
zstyle ':vcs_info:*' enable git svn |
||||||
|
precmd () { |
||||||
|
if [[ -z $(git ls-files --other --exclude-standard 2> /dev/null) ]] { |
||||||
|
zstyle ':vcs_info:*' formats ' [%b%c%u%B%F{green}]' |
||||||
|
} else { |
||||||
|
zstyle ':vcs_info:*' formats ' [%b%c%u%B%F{red}●%F{green}]' |
||||||
|
} |
||||||
|
|
||||||
|
vcs_info |
||||||
|
} |
||||||
|
|
||||||
|
setopt prompt_subst |
||||||
|
PROMPT='%B%F{magenta}%c%B%F{green}${vcs_info_msg_0_}%B%F{magenta} %{$reset_color%}%% ' |
||||||
@ -0,0 +1,50 @@ |
|||||||
|
# ------------------------------------------------------------------------------ |
||||||
|
# FILE: kphoen.zsh-theme |
||||||
|
# DESCRIPTION: oh-my-zsh theme file. |
||||||
|
# AUTHOR: Kévin Gomez (geek63@gmail.com) |
||||||
|
# VERSION: 1.0.0 |
||||||
|
# SCREENSHOT: |
||||||
|
# ------------------------------------------------------------------------------ |
||||||
|
|
||||||
|
|
||||||
|
if [[ "$TERM" != "dumb" ]] && [[ "$DISABLE_LS_COLORS" != "true" ]]; then |
||||||
|
PROMPT='[%{$fg[red]%}%n%{$reset_color%}@%{$fg[magenta]%}%m%{$reset_color%}:%{$fg[blue]%}%~%{$reset_color%}$(git_prompt_info)] |
||||||
|
%# ' |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX=" on %{$fg[green]%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||||
|
|
||||||
|
# display exitcode on the right when >0 |
||||||
|
return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||||
|
|
||||||
|
RPROMPT='${return_code}$(git_prompt_status)%{$reset_color%}' |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚" |
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹" |
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖" |
||||||
|
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭" |
||||||
|
else |
||||||
|
PROMPT='[%n@%m:%~$(git_prompt_info)] |
||||||
|
%# ' |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX=" on" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||||
|
|
||||||
|
# display exitcode on the right when >0 |
||||||
|
return_code="%(?..%? ↵)" |
||||||
|
|
||||||
|
RPROMPT='${return_code}$(git_prompt_status)' |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_ADDED=" ✚" |
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED=" ✹" |
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED=" ✖" |
||||||
|
ZSH_THEME_GIT_PROMPT_RENAMED=" ➜" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED=" ═" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED=" ✭" |
||||||
|
fi |
||||||
@ -0,0 +1,8 @@ |
|||||||
|
# Yay! High voltage and arrows! |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$reset_color%}%{$fg[green]%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%} " |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[yellow]%}⚡%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||||
|
|
||||||
|
PROMPT='%{$fg[cyan]%}%1~%{$reset_color%}%{$fg[red]%}|%{$reset_color%}$(git_prompt_info)%{$fg[cyan]%}⇒%{$reset_color%} ' |
||||||
@ -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 ' |
||||||
@ -0,0 +1,14 @@ |
|||||||
|
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||||
|
local user_host='%{$terminfo[bold]$fg[green]%}%n@%m%{$reset_color%}' |
||||||
|
local current_dir='%{$terminfo[bold]$fg[blue]%}%~%{$reset_color%}' |
||||||
|
local rvm_ruby='%{$fg[red]%}$(rvm_prompt_info)%{$reset_color%}' |
||||||
|
local git_branch='%{$fg[blue]%}$(git_prompt_info)%{$reset_color%}' |
||||||
|
|
||||||
|
PROMPT="${user_host}:${current_dir} ${rvm_ruby} |
||||||
|
${git_branch} %B$%b " |
||||||
|
RPS1="${return_code}" |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}✗%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$fg[green]%}✔%{$reset_color%}" |
||||||
@ -0,0 +1,30 @@ |
|||||||
|
#!/usr/bin/env zsh |
||||||
|
#local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||||
|
|
||||||
|
setopt promptsubst |
||||||
|
|
||||||
|
autoload -U add-zsh-hook |
||||||
|
|
||||||
|
PROMPT_SUCCESS_COLOR=$FG[117] |
||||||
|
PROMPT_FAILURE_COLOR=$FG[124] |
||||||
|
PROMPT_VCS_INFO_COLOR=$FG[242] |
||||||
|
PROMPT_PROMPT=$FG[077] |
||||||
|
GIT_DIRTY_COLOR=$FG[133] |
||||||
|
GIT_CLEAN_COLOR=$FG[118] |
||||||
|
GIT_PROMPT_INFO=$FG[012] |
||||||
|
|
||||||
|
PROMPT='%{$PROMPT_SUCCESS_COLOR%}%~%{$reset_color%} %{$GIT_PROMPT_INFO%}$(git_prompt_info)%{$GIT_DIRTY_COLOR%}$(git_prompt_status) %{$reset_color%}%{$PROMPT_PROMPT%}ᐅ%{$reset_color%} ' |
||||||
|
|
||||||
|
#RPS1="${return_code}" |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="(" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$GIT_PROMPT_INFO%})" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$GIT_DIRTY_COLOR%}✘" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN=" %{$GIT_CLEAN_COLOR%}✔" |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_ADDED="%{$FG[082]%}✚%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$FG[166]%}✹%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED="%{$FG[160]%}✖%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_RENAMED="%{$FG[220]%}➜%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$FG[082]%}═%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$FG[190]%}✭%{$reset_color%}" |
||||||
@ -0,0 +1,17 @@ |
|||||||
|
# Based on robbyrussell's theme, with host and rvm indicators. Example: |
||||||
|
# @host ➜ currentdir rvm:(rubyversion@gemset) git:(branchname) |
||||||
|
|
||||||
|
# Get the current ruby version in use with RVM: |
||||||
|
if [ -e ~/.rvm/bin/rvm-prompt ]; then |
||||||
|
RUBY_PROMPT_="%{$fg_bold[blue]%}rvm:(%{$fg[green]%}\$(~/.rvm/bin/rvm-prompt s i v g)%{$fg_bold[blue]%})%{$reset_color%} " |
||||||
|
fi |
||||||
|
|
||||||
|
# Get the host name (first 4 chars) |
||||||
|
HOST_PROMPT_="%{$fg_bold[red]%}@$HOST[0,4] ➜ %{$fg_bold[cyan]%}%c " |
||||||
|
GIT_PROMPT="%{$fg_bold[blue]%}\$(git_prompt_info)%{$fg_bold[blue]%} % %{$reset_color%}" |
||||||
|
PROMPT="$HOST_PROMPT_$RUBY_PROMPT_$GIT_PROMPT" |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="git:(%{$fg[red]%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[blue]%}) %{$fg[yellow]%}✗%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg[blue]%})" |
||||||
@ -0,0 +1,11 @@ |
|||||||
|
if [ "$(whoami)" = "root" ]; then CARETCOLOR="red"; else CARETCOLOR="blue"; fi |
||||||
|
|
||||||
|
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})" |
||||||
|
|
||||||
|
PROMPT='%{$fg[green]%}[%*]%{$reset_color%} %{$fg_no_bold[cyan]%}%n %{${fg_bold[blue]}%}::%{$reset_color%} %{$fg[yellow]%}%m%{$reset_color%} %{$fg_no_bold[magenta]%} ➜ %{$reset_color%} %{${fg[green]}%}%3~ $(git_prompt_info)%{${fg_bold[$CARETCOLOR]}%}»%{${reset_color}%} ' |
||||||
|
|
||||||
|
RPS1="${return_code}" |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[red]%}‹" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}" |
||||||
|
|
||||||
@ -0,0 +1,15 @@ |
|||||||
|
if [ "$(whoami)" = "root" ]; then CARETCOLOR="red"; else CARETCOLOR="magenta"; fi |
||||||
|
|
||||||
|
local return_code="%(?..%{$fg_bold[red]%}:( %?%{$reset_color%})" |
||||||
|
|
||||||
|
PROMPT=' |
||||||
|
%{$fg_bold[cyan]%}%n%{$reset_color%}%{$fg[yellow]%}@%{$reset_color%}%{$fg_bold[blue]%}%m%{$reset_color%}:%{${fg_bold[green]}%}%~%{$reset_color%}$(git_prompt_info) |
||||||
|
%{${fg[$CARETCOLOR]}%}%# %{${reset_color}%}' |
||||||
|
|
||||||
|
RPS1='${return_code} %D - %*' |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[magenta]%}^%{$reset_color%}%{$fg_bold[yellow]%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%} ±" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ?" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[red]%} ♥" |
||||||
@ -0,0 +1,6 @@ |
|||||||
|
PROMPT='%{$fg[green]%}%~%{$fg_bold[blue]%}$(git_prompt_info)%{$reset_color%} ' |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="(" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX=")" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY=" ✗" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN=" ✔" |
||||||
@ -0,0 +1,91 @@ |
|||||||
|
# ----------------------------------------------------------------------------- |
||||||
|
# FILE: smt.zsh-theme |
||||||
|
# DESCRIPTION: oh-my-zsh theme file, based on dogenpunk by Matthew Nelson. |
||||||
|
# AUTHOR: Stephen Tudor (stephen@tudorstudio.com |
||||||
|
# VERSION: 0.1 |
||||||
|
# SCREENSHOT: coming soon |
||||||
|
# ----------------------------------------------------------------------------- |
||||||
|
|
||||||
|
MODE_INDICATOR="%{$fg_bold[red]%}❮%{$reset_color%}%{$fg[red]%}❮❮%{$reset_color%}" |
||||||
|
local return_status="%{$fg[red]%}%(?..⏎)%{$reset_color%} " |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="|" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%}⚡%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_AHEAD="%{$fg_bold[red]%}!%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[green]%}✓%{$reset_color%}" |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%} ✚" |
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[blue]%} ✹" |
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%} ✖" |
||||||
|
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[magenta]%} ➜" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[yellow]%} ═" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[cyan]%} ✭" |
||||||
|
|
||||||
|
# Format for git_prompt_long_sha() and git_prompt_short_sha() |
||||||
|
ZSH_THEME_GIT_PROMPT_SHA_BEFORE="➤ %{$fg_bold[yellow]%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$reset_color%}" |
||||||
|
|
||||||
|
function prompt_char() { |
||||||
|
git branch >/dev/null 2>/dev/null && echo "%{$fg[green]%}±%{$reset_color%}" && return |
||||||
|
hg root >/dev/null 2>/dev/null && echo "%{$fg_bold[red]%}☿%{$reset_color%}" && return |
||||||
|
echo "%{$fg[cyan]%}◯%{$reset_color%}" |
||||||
|
} |
||||||
|
|
||||||
|
# Colors vary depending on time lapsed. |
||||||
|
ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT="%{$fg[green]%}" |
||||||
|
ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM="%{$fg[yellow]%}" |
||||||
|
ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG="%{$fg[red]%}" |
||||||
|
ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL="%{$fg[cyan]%}" |
||||||
|
|
||||||
|
# Determine the time since last commit. If branch is clean, |
||||||
|
# use a neutral color, otherwise colors will vary according to time. |
||||||
|
function git_time_since_commit() { |
||||||
|
if git rev-parse --git-dir > /dev/null 2>&1; then |
||||||
|
# Only proceed if there is actually a commit. |
||||||
|
if [[ $(git log 2>&1 > /dev/null | grep -c "^fatal: bad default revision") == 0 ]]; then |
||||||
|
# Get the last commit. |
||||||
|
last_commit=`git log --pretty=format:'%at' -1 2> /dev/null` |
||||||
|
now=`date +%s` |
||||||
|
seconds_since_last_commit=$((now-last_commit)) |
||||||
|
|
||||||
|
# Totals |
||||||
|
MINUTES=$((seconds_since_last_commit / 60)) |
||||||
|
HOURS=$((seconds_since_last_commit/3600)) |
||||||
|
|
||||||
|
# Sub-hours and sub-minutes |
||||||
|
DAYS=$((seconds_since_last_commit / 86400)) |
||||||
|
SUB_HOURS=$((HOURS % 24)) |
||||||
|
SUB_MINUTES=$((MINUTES % 60)) |
||||||
|
|
||||||
|
if [[ -n $(git status -s 2> /dev/null) ]]; then |
||||||
|
if [ "$MINUTES" -gt 30 ]; then |
||||||
|
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_LONG" |
||||||
|
elif [ "$MINUTES" -gt 10 ]; then |
||||||
|
COLOR="$ZSH_THEME_GIT_TIME_SHORT_COMMIT_MEDIUM" |
||||||
|
else |
||||||
|
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_SHORT" |
||||||
|
fi |
||||||
|
else |
||||||
|
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL" |
||||||
|
fi |
||||||
|
|
||||||
|
if [ "$HOURS" -gt 24 ]; then |
||||||
|
echo "[$COLOR${DAYS}d${SUB_HOURS}h${SUB_MINUTES}m%{$reset_color%}]" |
||||||
|
elif [ "$MINUTES" -gt 60 ]; then |
||||||
|
echo "[$COLOR${HOURS}h${SUB_MINUTES}m%{$reset_color%}]" |
||||||
|
else |
||||||
|
echo "[$COLOR${MINUTES}m%{$reset_color%}]" |
||||||
|
fi |
||||||
|
else |
||||||
|
COLOR="$ZSH_THEME_GIT_TIME_SINCE_COMMIT_NEUTRAL" |
||||||
|
echo "[$COLOR~]" |
||||||
|
fi |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
PROMPT=' |
||||||
|
%{$fg[blue]%}%m%{$reset_color%} 福 %{$fg[cyan]%}%~ %{$reset_color%}$(git_prompt_short_sha)$(git_prompt_info) |
||||||
|
%{$fg[red]%}%!%{$reset_color%} $(prompt_char) : ' |
||||||
|
|
||||||
|
RPROMPT='${return_status}$(git_time_since_commit)$(git_prompt_status)%{$reset_color%}' |
||||||
@ -0,0 +1,100 @@ |
|||||||
|
# prompt style and colors based on Steve Losh's Prose theme: |
||||||
|
# http://github.com/sjl/oh-my-zsh/blob/master/themes/prose.zsh-theme |
||||||
|
# |
||||||
|
# vcs_info modifications from Bart Trojanowski's zsh prompt: |
||||||
|
# http://www.jukie.net/bart/blog/pimping-out-zsh-prompt |
||||||
|
# |
||||||
|
# git untracked files modification from Brian Carper: |
||||||
|
# http://briancarper.net/blog/570/git-info-in-your-zsh-prompt |
||||||
|
|
||||||
|
function virtualenv_info { |
||||||
|
[ $VIRTUAL_ENV ] && echo '('`basename $VIRTUAL_ENV`') ' |
||||||
|
} |
||||||
|
PR_GIT_UPDATE=1 |
||||||
|
|
||||||
|
setopt prompt_subst |
||||||
|
autoload colors |
||||||
|
colors |
||||||
|
|
||||||
|
autoload -U add-zsh-hook |
||||||
|
autoload -Uz vcs_info |
||||||
|
|
||||||
|
#use extended color pallete if available |
||||||
|
if [[ $TERM = *256color* || $TERM = *rxvt* ]]; then |
||||||
|
turquoise="%F{81}" |
||||||
|
orange="%F{166}" |
||||||
|
purple="%F{135}" |
||||||
|
hotpink="%F{161}" |
||||||
|
limegreen="%F{118}" |
||||||
|
else |
||||||
|
turquoise="$fg[cyan]" |
||||||
|
orange="$fg[yellow]" |
||||||
|
purple="$fg[magenta]" |
||||||
|
hotpink="$fg[red]" |
||||||
|
limegreen="$fg[green]" |
||||||
|
fi |
||||||
|
|
||||||
|
# enable VCS systems you use |
||||||
|
zstyle ':vcs_info:*' enable git svn |
||||||
|
|
||||||
|
# check-for-changes can be really slow. |
||||||
|
# you should disable it, if you work with large repositories |
||||||
|
zstyle ':vcs_info:*:prompt:*' check-for-changes true |
||||||
|
|
||||||
|
# set formats |
||||||
|
# %b - branchname |
||||||
|
# %u - unstagedstr (see below) |
||||||
|
# %c - stagedstr (see below) |
||||||
|
# %a - action (e.g. rebase-i) |
||||||
|
# %R - repository path |
||||||
|
# %S - path in the repository |
||||||
|
PR_RST="%{${reset_color}%}" |
||||||
|
FMT_BRANCH="(%{$turquoise%}%b%u%c${PR_RST})" |
||||||
|
FMT_ACTION="(%{$limegreen%}%a${PR_RST})" |
||||||
|
FMT_UNSTAGED="%{$orange%}●" |
||||||
|
FMT_STAGED="%{$limegreen%}●" |
||||||
|
|
||||||
|
zstyle ':vcs_info:*:prompt:*' unstagedstr "${FMT_UNSTAGED}" |
||||||
|
zstyle ':vcs_info:*:prompt:*' stagedstr "${FMT_STAGED}" |
||||||
|
zstyle ':vcs_info:*:prompt:*' actionformats "${FMT_BRANCH}${FMT_ACTION}" |
||||||
|
zstyle ':vcs_info:*:prompt:*' formats "${FMT_BRANCH}" |
||||||
|
zstyle ':vcs_info:*:prompt:*' nvcsformats "" |
||||||
|
|
||||||
|
|
||||||
|
function steeef_preexec { |
||||||
|
case "$(history $HISTCMD)" in |
||||||
|
*git*) |
||||||
|
PR_GIT_UPDATE=1 |
||||||
|
;; |
||||||
|
*svn*) |
||||||
|
PR_GIT_UPDATE=1 |
||||||
|
;; |
||||||
|
esac |
||||||
|
} |
||||||
|
add-zsh-hook preexec steeef_preexec |
||||||
|
|
||||||
|
function steeef_chpwd { |
||||||
|
PR_GIT_UPDATE=1 |
||||||
|
} |
||||||
|
add-zsh-hook chpwd steeef_chpwd |
||||||
|
|
||||||
|
function steeef_precmd { |
||||||
|
if [[ -n "$PR_GIT_UPDATE" ]] ; then |
||||||
|
# check for untracked files or updated submodules, since vcs_info doesn't |
||||||
|
if [[ ! -z $(git ls-files --other --exclude-standard 2> /dev/null) ]]; then |
||||||
|
PR_GIT_UPDATE=1 |
||||||
|
FMT_BRANCH="(%{$turquoise%}%b%u%c%{$hotpink%}●${PR_RST})" |
||||||
|
else |
||||||
|
FMT_BRANCH="(%{$turquoise%}%b%u%c${PR_RST})" |
||||||
|
fi |
||||||
|
zstyle ':vcs_info:*:prompt:*' formats "${FMT_BRANCH}" |
||||||
|
|
||||||
|
vcs_info 'prompt' |
||||||
|
PR_GIT_UPDATE= |
||||||
|
fi |
||||||
|
} |
||||||
|
add-zsh-hook precmd steeef_precmd |
||||||
|
|
||||||
|
PROMPT=$' |
||||||
|
%{$purple%}%n%{$reset_color%} at %{$orange%}%m%{$reset_color%} in %{$limegreen%}%~%{$reset_color%} $vcs_info_msg_0_ |
||||||
|
$(virtualenv_info)$ ' |
||||||
@ -0,0 +1,26 @@ |
|||||||
|
# Git-centric variation of the "fishy" theme. |
||||||
|
# See screenshot at http://ompldr.org/vOHcwZg |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_ADDED="%{$fg[green]%}+" |
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$fg[magenta]%}!" |
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED="%{$fg[red]%}-" |
||||||
|
ZSH_THEME_GIT_PROMPT_RENAMED="%{$fg[blue]%}>" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$fg[cyan]%}#" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$fg[yellow]%}?" |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX=" " |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||||
|
|
||||||
|
local user_color='green' |
||||||
|
test $UID -eq 0 && user_color='red' |
||||||
|
|
||||||
|
PROMPT='%(?..%{$fg_bold[red]%}exit %? |
||||||
|
%{$reset_color%})'\ |
||||||
|
'%{$bold_color%}$(git_prompt_status)%{$reset_color%}'\ |
||||||
|
'$(git_prompt_info)'\ |
||||||
|
'%{$fg[$user_color]%}%~%{$reset_color%}'\ |
||||||
|
'%(!.#.>) ' |
||||||
|
|
||||||
|
PROMPT2='%{$fg[red]%}\ %{$reset_color%}' |
||||||
@ -0,0 +1,96 @@ |
|||||||
|
#------------------------------------------------------------------------------- |
||||||
|
# Sunrise theme for oh-my-zsh by Adam Lindberg (eproxus@gmail.com) |
||||||
|
# Intended to be used with Solarized: http://ethanschoonover.com/solarized |
||||||
|
# (Needs Git plugin for current_branch method) |
||||||
|
#------------------------------------------------------------------------------- |
||||||
|
|
||||||
|
# Color shortcuts |
||||||
|
R=$fg[red] |
||||||
|
G=$fg[green] |
||||||
|
M=$fg[magenta] |
||||||
|
RB=$fg_bold[red] |
||||||
|
YB=$fg_bold[yellow] |
||||||
|
BB=$fg_bold[blue] |
||||||
|
RESET=$reset_color |
||||||
|
|
||||||
|
if [ "$(whoami)" = "root" ]; then |
||||||
|
PROMPTCOLOR="%{$RB%}" PREFIX="-!-"; |
||||||
|
else |
||||||
|
PROMPTCOLOR="" PREFIX="---"; |
||||||
|
fi |
||||||
|
|
||||||
|
local return_code="%(?..%{$R%}%? ↵%{$RESET%})" |
||||||
|
|
||||||
|
# Get the status of the working tree (copied and modified from git.zsh) |
||||||
|
custom_git_prompt_status() { |
||||||
|
INDEX=$(git status --porcelain 2> /dev/null) |
||||||
|
STATUS="" |
||||||
|
# Non-staged |
||||||
|
if $(echo "$INDEX" | grep '^?? ' &> /dev/null); then |
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_UNTRACKED$STATUS" |
||||||
|
fi |
||||||
|
if $(echo "$INDEX" | grep '^UU ' &> /dev/null); then |
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_UNMERGED$STATUS" |
||||||
|
fi |
||||||
|
if $(echo "$INDEX" | grep '^ D ' &> /dev/null); then |
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_DELETED$STATUS" |
||||||
|
fi |
||||||
|
if $(echo "$INDEX" | grep '^.M ' &> /dev/null); then |
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS" |
||||||
|
elif $(echo "$INDEX" | grep '^AM ' &> /dev/null); then |
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS" |
||||||
|
elif $(echo "$INDEX" | grep '^ T ' &> /dev/null); then |
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_MODIFIED$STATUS" |
||||||
|
fi |
||||||
|
# Staged |
||||||
|
if $(echo "$INDEX" | grep '^D ' &> /dev/null); then |
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_STAGED_DELETED$STATUS" |
||||||
|
fi |
||||||
|
if $(echo "$INDEX" | grep '^R' &> /dev/null); then |
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_STAGED_RENAMED$STATUS" |
||||||
|
fi |
||||||
|
if $(echo "$INDEX" | grep '^M' &> /dev/null); then |
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_STAGED_MODIFIED$STATUS" |
||||||
|
fi |
||||||
|
if $(echo "$INDEX" | grep '^A' &> /dev/null); then |
||||||
|
STATUS="$ZSH_THEME_GIT_PROMPT_STAGED_ADDED$STATUS" |
||||||
|
fi |
||||||
|
|
||||||
|
if $(echo -n "$STATUS" | grep '.*' &> /dev/null); then |
||||||
|
STATUS="$ZSH_THEME_GIT_STATUS_PREFIX$STATUS" |
||||||
|
fi |
||||||
|
|
||||||
|
echo $STATUS |
||||||
|
} |
||||||
|
|
||||||
|
# get the name of the branch we are on (copied and modified from git.zsh) |
||||||
|
function custom_git_prompt() { |
||||||
|
ref=$(git symbolic-ref HEAD 2> /dev/null) || return |
||||||
|
echo "$ZSH_THEME_GIT_PROMPT_PREFIX${ref#refs/heads/}$(parse_git_dirty)$(git_prompt_ahead)$(custom_git_prompt_status)$ZSH_THEME_GIT_PROMPT_SUFFIX" |
||||||
|
} |
||||||
|
|
||||||
|
# %B sets bold text |
||||||
|
PROMPT='%B$PREFIX %2~ $(custom_git_prompt)%{$M%}%B»%b%{$RESET%} ' |
||||||
|
RPS1="${return_code}" |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$YB%}‹" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$YB%}›%{$RESET%} " |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$R%}*" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_AHEAD="%{$BB%}➔" |
||||||
|
|
||||||
|
ZSH_THEME_GIT_STATUS_PREFIX=" " |
||||||
|
|
||||||
|
# Staged |
||||||
|
ZSH_THEME_GIT_PROMPT_STAGED_ADDED="%{$G%}A" |
||||||
|
ZSH_THEME_GIT_PROMPT_STAGED_MODIFIED="%{$G%}M" |
||||||
|
ZSH_THEME_GIT_PROMPT_STAGED_RENAMED="%{$G%}R" |
||||||
|
ZSH_THEME_GIT_PROMPT_STAGED_DELETED="%{$G%}D" |
||||||
|
|
||||||
|
# Not-staged |
||||||
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$R%}⁇" |
||||||
|
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$R%}M" |
||||||
|
ZSH_THEME_GIT_PROMPT_DELETED="%{$R%}D" |
||||||
|
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$R%}UU" |
||||||
@ -0,0 +1,18 @@ |
|||||||
|
# Grab the current version of ruby in use (via RVM): [ruby-1.8.7] |
||||||
|
JARIN_CURRENT_RUBY_="%{$fg[white]%}[%{$fg[red]%}\$(~/.rvm/bin/rvm-prompt i v)%{$fg[white]%}]%{$reset_color%}" |
||||||
|
|
||||||
|
# Grab the current filepath, use shortcuts: ~/Desktop |
||||||
|
# Append the current git branch, if in a git repository |
||||||
|
JARIN_CURRENT_LOCA_="%{$fg_bold[cyan]%}%~\$(git_prompt_info)%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[white]%} <%{$fg[magenta]%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||||
|
|
||||||
|
# Do nothing if the branch is clean (no changes). |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$reset_color%}>" |
||||||
|
|
||||||
|
# Add a yellow ✗ if the branch is dirty |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$reset_color%}> %{$fg[yellow]%}✗" |
||||||
|
|
||||||
|
# Put it all together! |
||||||
|
PROMPT="$JARIN_CURRENT_RUBY_ $JARIN_CURRENT_LOCA_ " |
||||||
|
|
||||||
@ -0,0 +1,9 @@ |
|||||||
|
PROMPT='%{$fg[green]%} %% ' |
||||||
|
# RPS1='%{$fg[blue]%}%~%{$reset_color%} ' |
||||||
|
RPS1='%{$fg[white]%}%2~$(git_prompt_info) %{$fg_bold[blue]%}%m%{$reset_color%}' |
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX=" (%{$fg[yellow]%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX=")%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg[red]%} ⚡%{$fg[yellow]%}" |
||||||
|
|
||||||
@ -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 |
|
||||||
@ -0,0 +1,95 @@ |
|||||||
|
# Name: trapd00r zsh theme |
||||||
|
# Author: Magnus Woldrich <m@japh.se> |
||||||
|
# |
||||||
|
# This theme needs a terminal supporting 256 colors as well as unicode. It also |
||||||
|
# needs the script that splits up the current path and makes it fancy as located |
||||||
|
# here: https://github.com/trapd00r/utils/blob/master/zsh_path |
||||||
|
# |
||||||
|
# By default it spans over two lines like so: |
||||||
|
# |
||||||
|
# scp1@shiva:pts/9-> /home » scp1 (0) |
||||||
|
# > |
||||||
|
# |
||||||
|
# that's user@host:pts/-> splitted path (return status) |
||||||
|
# |
||||||
|
# If the current directory is a git repository, we span 3 lines; |
||||||
|
# |
||||||
|
# git❨ master ❩ DIRTY |
||||||
|
# scp1@shiva:pts/4-> /home » scp1 » dev » utils (0) |
||||||
|
# > |
||||||
|
|
||||||
|
autoload -U add-zsh-hook |
||||||
|
autoload -Uz vcs_info |
||||||
|
|
||||||
|
local c0=$( printf "\e[m") |
||||||
|
local c1=$( printf "\e[38;5;245m") |
||||||
|
local c2=$( printf "\e[38;5;250m") |
||||||
|
local c3=$( printf "\e[38;5;242m") |
||||||
|
local c4=$( printf "\e[38;5;197m") |
||||||
|
local c5=$( printf "\e[38;5;225m") |
||||||
|
local c6=$( printf "\e[38;5;240m") |
||||||
|
local c7=$( printf "\e[38;5;242m") |
||||||
|
local c8=$( printf "\e[38;5;244m") |
||||||
|
local c9=$( printf "\e[38;5;162m") |
||||||
|
local c10=$(printf "\e[1m") |
||||||
|
local c11=$(printf "\e[38;5;208m\e[1m") |
||||||
|
local c12=$(printf "\e[38;5;142m\e[1m") |
||||||
|
local c13=$(printf "\e[38;5;196m\e[1m") |
||||||
|
|
||||||
|
|
||||||
|
# We dont want to use the extended colorset in the TTY / VC. |
||||||
|
if [ "$TERM" = "linux" ]; then |
||||||
|
c1=$( printf "\e[34;1m") |
||||||
|
c2=$( printf "\e[35m") |
||||||
|
c3=$( printf "\e[31m") |
||||||
|
c4=$( printf "\e[31;1m") |
||||||
|
c5=$( printf "\e[32m") |
||||||
|
c6=$( printf "\e[32;1m") |
||||||
|
c7=$( printf "\e[33m") |
||||||
|
c8=$( printf "\e[33;1m") |
||||||
|
c9=$( printf "\e[34m") |
||||||
|
|
||||||
|
c11=$(printf "\e[35;1m") |
||||||
|
c12=$(printf "\e[36m") |
||||||
|
c13=$(printf "\e[31;1m") |
||||||
|
fi |
||||||
|
|
||||||
|
zstyle ':vcs_info:*' actionformats \ |
||||||
|
'%{$c8%}(%f%s)%{$c7%}-%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f ' |
||||||
|
|
||||||
|
zstyle ':vcs_info:*' formats \ |
||||||
|
"%{$c8%}%s%%{$c7%}❨ %{$c9%}%{$c11%}%b%{$c7%} ❩%{$reset_color%}%f " |
||||||
|
|
||||||
|
zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{3}%r' |
||||||
|
zstyle ':vcs_info:*' enable git |
||||||
|
|
||||||
|
add-zsh-hook precmd prompt_jnrowe_precmd |
||||||
|
|
||||||
|
prompt_jnrowe_precmd () { |
||||||
|
vcs_info |
||||||
|
if [ "${vcs_info_msg_0_}" = "" ]; then |
||||||
|
dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$(zsh_path)%} %{$c0%}(%{$c5%}%?%{$c0%})" |
||||||
|
PROMPT='%{$fg_bold[green]%}%p%{$reset_color%}${vcs_info_msg_0_}${dir_status} ${ret_status}%{$reset_color%} |
||||||
|
> ' |
||||||
|
|
||||||
|
# modified, to be commited |
||||||
|
elif [[ $(git diff --cached --name-status 2>/dev/null ) != "" ]]; then |
||||||
|
dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$(zsh_path)%} %{$c0%}(%{$c5%}%?%{$c0%})" |
||||||
|
PROMPT='${vcs_info_msg_0_}%{$30%} %{$bg_bold[red]%}%{$fg_bold[cyan]%}C%{$fg_bold[black]%}OMMIT%{$reset_color%} |
||||||
|
%{$fg_bold[green]%}%p%{$reset_color%}${dir_status}%{$reset_color%} |
||||||
|
> ' |
||||||
|
|
||||||
|
elif [[ $(git diff --name-status 2>/dev/null ) != "" ]]; then |
||||||
|
dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$(zsh_path)%} %{$c0%}(%{$c5%}%?%{$c0%})" |
||||||
|
PROMPT='${vcs_info_msg_0_}%{$bg_bold[red]%}%{$fg_bold[blue]%}D%{$fg_bold[black]%}IRTY%{$reset_color%} |
||||||
|
%{$fg_bold[green]%}%p%{$reset_color%}${dir_status}%{$reset_color%} |
||||||
|
%{$c13%}>%{$c0%} ' |
||||||
|
else |
||||||
|
dir_status="%{$c1%}%n%{$c4%}@%{$c2%}%m%{$c0%}:%{$c3%}%l%{$c6%}->%{$(zsh_path)%} %{$c0%}(%{$c5%}%?%{$c0%})" |
||||||
|
PROMPT='${vcs_info_msg_0_} |
||||||
|
%{$fg_bold[green]%}%p%{$reset_color%}${dir_status} ${vcs_info_msg_0_}%{$reset_color%} |
||||||
|
> ' |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
# vim: set ft=zsh sw=2 et tw=0: |
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue