
49 changed files with 1496 additions and 75 deletions
@ -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' |
@ -1,4 +0,0 @@ |
|||||||
# add brew completion function to path |
|
||||||
fpath=($ZSH/plugins/brew $fpath) |
|
||||||
autoload -U compinit |
|
||||||
compinit -i |
|
@ -0,0 +1,22 @@ |
|||||||
|
# ------------------------------------------------------------------------------ |
||||||
|
# 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 |
||||||
|
|
@ -0,0 +1,67 @@ |
|||||||
|
#compdef cpanm |
||||||
|
|
||||||
|
## |
||||||
|
# cpanminus Z Shell completion script |
||||||
|
## |
||||||
|
# |
||||||
|
# Current supported cpanm version: 1.4000 (Tue Mar 8 01:00:49 PST 2011) |
||||||
|
# |
||||||
|
# The latest code is always located at: |
||||||
|
# https://github.com/rshhh/cpanminus/blob/master/etc/_cpanm |
||||||
|
# |
||||||
|
|
||||||
|
local arguments curcontext="$curcontext" |
||||||
|
typeset -A opt_args |
||||||
|
|
||||||
|
|
||||||
|
arguments=( |
||||||
|
|
||||||
|
# Commands |
||||||
|
# '(--install -i)'{--install,-i}'[Installs the modules]' |
||||||
|
'(- :)--self-upgrade[Upgrades itself]' |
||||||
|
'(- :)--info[Displays distribution info on CPAN]' |
||||||
|
'(--installdeps)--installdeps[Only install dependencies]' |
||||||
|
'(--look)--look[Download/unpack the distribution and then open the directory with your shell]' |
||||||
|
'(- :)'{--help,-h}'[Displays help information]' |
||||||
|
'(- :)'{--version,-V}'[Displays software version]' |
||||||
|
|
||||||
|
# Options |
||||||
|
{--force,-f}'[Force install]' |
||||||
|
{--notest,-n}'[Do not run unit tests]' |
||||||
|
{--sudo,-S}'[sudo to run install commands]' |
||||||
|
'(-v --verbose --quiet -q)'{--verbose,-v}'[Turns on chatty output]' |
||||||
|
'(-q --quiet --verbose -v)'{--quiet,-q}'[Turns off all output]' |
||||||
|
{--local-lib,-l}'[Specify the install base to install modules]' |
||||||
|
{--local-lib-contained,-L}'[Specify the install base to install all non-core modules]' |
||||||
|
'--mirror[Specify the base URL for the mirror (e.g. http://cpan.cpantesters.org/)]:URLs:_urls' |
||||||
|
'--mirror-only[Use the mirror\''s index file instead of the CPAN Meta DB]' |
||||||
|
'--prompt[Prompt when configure/build/test fails]' |
||||||
|
'--reinstall[Reinstall the distribution even if you already have the latest version installed]' |
||||||
|
'--interactive[Turn on interactive configure]' |
||||||
|
|
||||||
|
'--scandeps[Scan the depencencies of given modules and output the tree in a text format]' |
||||||
|
'--format[Specify what format to display the scanned dependency tree]:scandeps format:(tree json yaml dists)' |
||||||
|
|
||||||
|
'--save-dists[Specify the optional directory path to copy downloaded tarballs]' |
||||||
|
# '--uninst-shadows[Uninstalls the shadow files of the distribution that you\''re installing]' |
||||||
|
|
||||||
|
'--auto-cleanup[Number of days that cpanm\''s work directories expire in. Defaults to 7]' |
||||||
|
'(--no-man-pages)--man-pages[Generates man pages for executables (man1) and libraries (man3)]' |
||||||
|
'(--man-pages)--no-man-pages[Do not generate man pages]' |
||||||
|
|
||||||
|
|
||||||
|
# Note: Normally with "--lwp", "--wget" and "--curl" options set to true (which is the default) cpanm tries LWP, |
||||||
|
# Wget, cURL and HTTP::Tiny (in that order) and uses the first one available. |
||||||
|
# (So that the exclusions are not enabled here for the completion) |
||||||
|
'(--lwp)--lwp[Use LWP module to download stuff]' |
||||||
|
'(--wget)--wget[Use GNU Wget (if available) to download stuff]' |
||||||
|
'(--curl)--curl[Use cURL (if available) to download stuff]' |
||||||
|
|
||||||
|
# Other completions |
||||||
|
'*:Local directory or archive:_files -/ -g "*.(tar.gz|tgz|tar.bz2|zip)(-.)"' |
||||||
|
# '*::args: _normal' # this looks for default files (any files) |
||||||
|
) |
||||||
|
_arguments -s $arguments \ |
||||||
|
&& return 0 |
||||||
|
|
||||||
|
return 1 |
@ -0,0 +1,13 @@ |
|||||||
|
# Aliases |
||||||
|
alias as="aptitude -F \"* %p -> %d \n(%v/%V)\" \ |
||||||
|
--no-gui --disable-columns search" # search package |
||||||
|
alias ad="sudo apt-get update" # update packages lists |
||||||
|
alias au="sudo apt-get update && \ |
||||||
|
sudo apt-get dselect-upgrade" # upgrade packages |
||||||
|
alias ai="sudo apt-get install" # install package |
||||||
|
alias ar="sudo apt-get remove --purge && \ |
||||||
|
sudo apt-get autoremove --purge" # remove package |
||||||
|
alias ap="apt-cache policy" # apt policy |
||||||
|
alias av="apt-cache show" # show package info |
||||||
|
alias acs="apt-cache search" # search package |
||||||
|
alias ac="sudo apt-get clean && sudo apt-get autoclean" # clean apt cache |
@ -0,0 +1,60 @@ |
|||||||
|
# https://github.com/dbbolton/ |
||||||
|
# |
||||||
|
# Debian-related zsh aliases and functions for zsh |
||||||
|
|
||||||
|
|
||||||
|
# Aliases ################################################################### |
||||||
|
|
||||||
|
# Some self-explanatory aliases |
||||||
|
alias afs='apt-file search --regexp' |
||||||
|
alias aps='aptitude search' |
||||||
|
alias apsrc='apt-get source' |
||||||
|
alias apv='apt-cache policy' |
||||||
|
|
||||||
|
alias apdg='su -c "aptitude update && aptitude safe-upgrade"' |
||||||
|
alias apud='su -c "aptitude update"' |
||||||
|
alias apug='su -c "aptitude safe-upgrade"' |
||||||
|
|
||||||
|
# print all installed packages |
||||||
|
alias allpkgs='aptitude search -F "%p" --disable-columns ~i' |
||||||
|
|
||||||
|
# Install all .deb files in the current directory. |
||||||
|
# Warning: you will need to put the glob in single quotes if you use: |
||||||
|
# glob_subst |
||||||
|
alias di='su -c "dpkg -i ./*.deb"' |
||||||
|
|
||||||
|
# Create a basic .deb package |
||||||
|
alias mydeb='time dpkg-buildpackage -rfakeroot -us -uc' |
||||||
|
|
||||||
|
# Remove ALL kernel images and headers EXCEPT the one in use |
||||||
|
alias kclean='su -c '\''aptitude remove -P ?and(~i~nlinux-(ima|hea) ?not(~n`uname -r`))'\'' root' |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Functions ################################################################# |
||||||
|
|
||||||
|
# create a simple script that can be used to 'duplicate' a system |
||||||
|
apt-copy() { |
||||||
|
print '#!/bin/sh'"\n" > apt-copy.sh |
||||||
|
|
||||||
|
list=$(perl -m'AptPkg::Cache' -e '$c=AptPkg::Cache->new; for (keys %$c){ push @a, $_ if $c->{$_}->{'CurrentState'} eq 'Installed';} print "$_ " for sort @a;') |
||||||
|
|
||||||
|
print 'aptitude install '"$list\n" >> apt-copy.sh |
||||||
|
|
||||||
|
chmod +x apt-copy.sh |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
# Kernel-package building shortcut |
||||||
|
dbb-build () { |
||||||
|
MAKEFLAGS='' # temporarily unset MAKEFLAGS ( '-j3' will fail ) |
||||||
|
appendage='-custom' # this shows up in $ (uname -r ) |
||||||
|
revision=$(date +"%Y%m%d") # this shows up in the .deb file name |
||||||
|
|
||||||
|
make-kpkg clean |
||||||
|
|
||||||
|
time fakeroot make-kpkg --append-to-version "$appendage" --revision \ |
||||||
|
"$revision" kernel_image kernel_headers |
||||||
|
} |
||||||
|
|
||||||
|
|
@ -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,7 @@ |
|||||||
# 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,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,26 @@ |
|||||||
|
# LOL!!1 |
||||||
|
# Source: http://aur.archlinux.org/packages/lolbash/lolbash/lolbash.sh |
||||||
|
|
||||||
|
alias wtf='dmesg' |
||||||
|
alias onoz='cat /var/log/errors.log' |
||||||
|
alias rtfm='man' |
||||||
|
|
||||||
|
alias visible='echo' |
||||||
|
alias invisible='cat' |
||||||
|
alias moar='more' |
||||||
|
|
||||||
|
alias icanhas='mkdir' |
||||||
|
alias donotwant='rm' |
||||||
|
alias dowant='cp' |
||||||
|
alias gtfo='mv' |
||||||
|
|
||||||
|
alias hai='cd' |
||||||
|
alias plz='pwd' |
||||||
|
|
||||||
|
alias inur='locate' |
||||||
|
|
||||||
|
alias nomz='ps -aux' |
||||||
|
alias nomnom='killall' |
||||||
|
|
||||||
|
alias cya='reboot' |
||||||
|
alias kthxbai='halt' |
@ -0,0 +1,89 @@ |
|||||||
|
#compdef port |
||||||
|
|
||||||
|
local subcmds |
||||||
|
|
||||||
|
# we cache the list of ports |
||||||
|
# we shall use some cache policy to avoid problems with new ports |
||||||
|
if (( ! $+portlist )); then |
||||||
|
portlist=($(port echo all; echo "all current active inactive installed uninstalled outdated")) |
||||||
|
fi |
||||||
|
|
||||||
|
subcmds=( |
||||||
|
'activate' |
||||||
|
'archive' |
||||||
|
'build' |
||||||
|
'cat' |
||||||
|
'clean' |
||||||
|
'configure' |
||||||
|
'contents' |
||||||
|
'deactivate' |
||||||
|
'dependents' |
||||||
|
'deps' |
||||||
|
'destroot' |
||||||
|
'dir' |
||||||
|
'distcheck' |
||||||
|
'distclean' |
||||||
|
'dmg' |
||||||
|
'echo' |
||||||
|
'edit' |
||||||
|
'extract' |
||||||
|
'fetch' |
||||||
|
'file' |
||||||
|
'help' |
||||||
|
'info' |
||||||
|
'install' |
||||||
|
'installed' |
||||||
|
'list' |
||||||
|
'livecheck' |
||||||
|
'location' |
||||||
|
'mpkg' |
||||||
|
'outdated' |
||||||
|
'patch' |
||||||
|
'pkg' |
||||||
|
'provides' |
||||||
|
'rpmpackage' |
||||||
|
'search' |
||||||
|
'selfupdate' |
||||||
|
'sync' |
||||||
|
'test' |
||||||
|
'unarchive' |
||||||
|
'uninstall' |
||||||
|
'upgrade' |
||||||
|
'variants' |
||||||
|
'version' |
||||||
|
) |
||||||
|
|
||||||
|
_arguments -C \ |
||||||
|
'-v[verbose mode (generate verbose messages)]' \ |
||||||
|
'-d[debug mode (generate debugging messages)]' \ |
||||||
|
'-q[quiet mode (suppress messages)]' \ |
||||||
|
'-D[specify portdir]' \ |
||||||
|
'-k[keep mode (do not autoclean after install)]' \ |
||||||
|
'-n[dont follow dependencies in upgrade (only for upgrading)]' \ |
||||||
|
'-a[upgrade all installed ports (only for upgrading)]' \ |
||||||
|
'-u[uninstall non-active ports when upgrading and uninstalling]' \ |
||||||
|
'-f[force mode (ignore state file)]' \ |
||||||
|
'-s[source-only mode]' \ |
||||||
|
'-b[binary-only mode]' \ |
||||||
|
'-o[honor state files older than Portfile]' \ |
||||||
|
'*::command:->command' \ |
||||||
|
&& return 0 |
||||||
|
|
||||||
|
case $state in |
||||||
|
command) |
||||||
|
if ((CURRENT == 1)); then |
||||||
|
state=subcommands |
||||||
|
else |
||||||
|
state=portname |
||||||
|
fi |
||||||
|
;; |
||||||
|
esac |
||||||
|
|
||||||
|
case $state in |
||||||
|
subcommands) |
||||||
|
_describe -t commands 'port commands' subcmds |
||||||
|
;; |
||||||
|
portname) |
||||||
|
_describe -t commands 'available ports' portlist |
||||||
|
;; |
||||||
|
esac |
@ -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,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,62 @@ |
|||||||
|
# https://github.com/dbbolton |
||||||
|
# |
||||||
|
# Below are some useful Perl-related aliases/functions that I use with zsh. |
||||||
|
|
||||||
|
|
||||||
|
# Aliases ################################################################### |
||||||
|
|
||||||
|
# perlbrew ######## |
||||||
|
alias pbi='perlbrew install' |
||||||
|
alias pbl='perlbrew list' |
||||||
|
alias pbo='perlbrew off' |
||||||
|
alias pbs='perlbrew switch' |
||||||
|
alias pbu='perlbrew use' |
||||||
|
|
||||||
|
# Perl ############ |
||||||
|
|
||||||
|
# perldoc` |
||||||
|
alias pd='perldoc' |
||||||
|
|
||||||
|
# use perl like awk/sed |
||||||
|
alias ple='perl -wlne' |
||||||
|
|
||||||
|
# show the latest stable release of Perl |
||||||
|
alias latest-perl='curl -s http://www.perl.org/get.html | perl -wlne '\''if (/perl\-([\d\.]+)\.tar\.gz/) { print $1; exit;}'\' |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Functions ################################################################# |
||||||
|
|
||||||
|
# newpl - creates a basic Perl script file and opens it with $EDITOR |
||||||
|
newpl () { |
||||||
|
# set $EDITOR to 'vim' if it is undefined |
||||||
|
[[ -z $EDITOR ]] && EDITOR=vim |
||||||
|
|
||||||
|
# if the file exists, just open it |
||||||
|
[[ -e $1 ]] && print "$1 exists; not modifying.\n" && $EDITOR $1 |
||||||
|
|
||||||
|
# if it doesn't, make it, and open it |
||||||
|
[[ ! -e $1 ]] && print '#!/usr/bin/perl'"\n"'use strict;'"\n"'use warnings;'\ |
||||||
|
"\n\n" > $1 && $EDITOR $1 |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
# pgs - Perl Global Substitution |
||||||
|
# find pattern = 1st arg |
||||||
|
# replace pattern = 2nd arg |
||||||
|
# filename = 3rd arg |
||||||
|
pgs() { # [find] [replace] [filename] |
||||||
|
perl -i.orig -pe 's/'"$1"'/'"$2"'/g' "$3" |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
# Perl grep, because 'grep -P' is terrible. Lets you work with pipes or files. |
||||||
|
prep() { # [pattern] [filename unless STDOUT] |
||||||
|
perl -nle 'print if /'"$1"'/;' $2 |
||||||
|
} |
||||||
|
|
||||||
|
# say - append a newline to 'print' |
||||||
|
say() { |
||||||
|
print "$1\n" |
||||||
|
} |
||||||
|
|
@ -1,4 +0,0 @@ |
|||||||
# add brew completion function to path |
|
||||||
fpath=($ZSH/plugins/pip $fpath) |
|
||||||
autoload -U compinit |
|
||||||
compinit -i |
|
@ -1,10 +1,30 @@ |
|||||||
alias rs='ruby script/rails server' |
# Rails 3 aliases, backwards-compatible with Rails 2. |
||||||
alias rg='ruby script/rails generate' |
|
||||||
alias rd='ruby script/rails destroy' |
function _bundle_command { |
||||||
alias rp='ruby script/rails plugin' |
if command -v bundle && [ -e "Gemfile" ]; then |
||||||
|
bundle exec $@ |
||||||
|
else |
||||||
|
$@ |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
function _rails_command () { |
||||||
|
if [ -e "script/server" ]; then |
||||||
|
ruby script/$@ |
||||||
|
else |
||||||
|
ruby script/rails $@ |
||||||
|
fi |
||||||
|
} |
||||||
|
|
||||||
|
alias rc='_rails_command console' |
||||||
|
alias rd='_rails_command destroy' |
||||||
|
alias rdb='_rails_command dbconsole' |
||||||
alias rdbm='rake db:migrate db:test:clone' |
alias rdbm='rake db:migrate db:test:clone' |
||||||
alias rdbmr='rake db:migrate && rake db:migrate:redo' |
alias rg='_rails_command generate' |
||||||
alias rc='ruby script/rails console' |
alias rp='_rails_command plugin' |
||||||
alias rd='ruby script/rails server --debugger' |
alias rs='_rails_command server' |
||||||
|
alias rsd='_rails_command server --debugger' |
||||||
alias devlog='tail -f log/development.log' |
alias devlog='tail -f log/development.log' |
||||||
|
|
||||||
|
alias rspec='_bundle_command rspec' |
||||||
|
alias cuke='_bundle_command cucumber' |
||||||
|
@ -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' |
||||||
|
'linset: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 |
@ -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,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,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,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,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,15 @@ |
|||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX=" %{$fg[green]%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" |
||||||
|
ZSH_THEME_GIT_PROMPT_DIRTY=" %{$fg[red]%}⚡" |
||||||
|
ZSH_THEME_GIT_PROMPT_CLEAN="" |
||||||
|
|
||||||
|
function prompt_char { |
||||||
|
if [ $UID -eq 0 ]; then echo "%{$fg[red]%}#%{$reset_color%}"; else echo $; fi |
||||||
|
} |
||||||
|
|
||||||
|
PROMPT='%(?, ,%{$fg[red]%}FAIL: $?%{$reset_color%} |
||||||
|
) |
||||||
|
%{$fg[magenta]%}%n%{$reset_color%}@%{$fg[yellow]%}%m%{$reset_color%}: %{$fg_bold[blue]%}%~%{$reset_color%}$(git_prompt_info) |
||||||
|
%_$(prompt_char) ' |
||||||
|
|
||||||
|
RPROMPT='%{$fg[green]%}[%*]%{$reset_color%}' |
Loading…
Reference in new issue