mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-02-13 03:01:32 +01:00
merge
This commit is contained in:
commit
ede9aa3c59
22 changed files with 227 additions and 37 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -1,9 +1,8 @@
|
||||||
locals.zsh
|
locals.zsh
|
||||||
log/.zsh_history
|
log/.zsh_history
|
||||||
projects.zsh
|
projects.zsh
|
||||||
custom/*
|
custom/example
|
||||||
!custom/example
|
custom/example.zsh
|
||||||
!custom/example.zsh
|
|
||||||
*.swp
|
*.swp
|
||||||
!custom/example.zshcache
|
!custom/example.zshcache
|
||||||
cache/
|
cache/
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
!https://s3.amazonaws.com/ohmyzsh/oh-my-zsh-logo.png!
|
||||||
|
|
||||||
oh-my-zsh is an open source, community-driven framework for managing your ZSH configuration. It comes bundled with a ton of helpful functions, helpers, plugins, themes, and few things that make you shout...
|
oh-my-zsh is an open source, community-driven framework for managing your ZSH configuration. It comes bundled with a ton of helpful functions, helpers, plugins, themes, and few things that make you shout...
|
||||||
|
|
||||||
bq. "OH MY ZSHELL!"
|
bq. "OH MY ZSHELL!"
|
||||||
|
|
|
||||||
28
custom/plugins/sfffe/sfffe.plugin.zsh
Normal file
28
custom/plugins/sfffe/sfffe.plugin.zsh
Normal file
|
|
@ -0,0 +1,28 @@
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
# FILE: sfffe.plugin.zsh
|
||||||
|
# DESCRIPTION: search file for FE
|
||||||
|
# AUTHOR: yleo77 (ylep77@gmail.com)
|
||||||
|
# VERSION: 0.1
|
||||||
|
# REQUIRE: ack
|
||||||
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
if [ ! -x $(which ack) ]; then
|
||||||
|
echo \'ack\' is not installed!
|
||||||
|
exit -1
|
||||||
|
fi
|
||||||
|
|
||||||
|
ajs() {
|
||||||
|
ack "$@" --type js
|
||||||
|
}
|
||||||
|
|
||||||
|
acss() {
|
||||||
|
ack "$@" --type css
|
||||||
|
}
|
||||||
|
|
||||||
|
fjs() {
|
||||||
|
find ./ -name "$@*" -type f | grep '\.js'
|
||||||
|
}
|
||||||
|
|
||||||
|
fcss() {
|
||||||
|
find ./ -name "$@*" -type f | grep '\.css'
|
||||||
|
}
|
||||||
14
oh-my-zsh.sh
14
oh-my-zsh.sh
|
|
@ -38,10 +38,20 @@ for plugin ($plugins); do
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Figure out the SHORT hostname
|
||||||
|
if [ -n "$commands[scutil]" ]; then
|
||||||
|
# OS X
|
||||||
|
SHORT_HOST=$(scutil --get ComputerName)
|
||||||
|
else
|
||||||
|
SHORT_HOST=${HOST/.*/}
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Save the location of the current completion dump file.
|
||||||
|
ZSH_COMPDUMP="${ZDOTDIR:-${HOME}}/.zcompdump-${SHORT_HOST}-${ZSH_VERSION}"
|
||||||
|
|
||||||
# Load and run compinit
|
# Load and run compinit
|
||||||
autoload -U compinit
|
autoload -U compinit
|
||||||
compinit -i
|
compinit -i -d "${ZSH_COMPDUMP}"
|
||||||
|
|
||||||
|
|
||||||
# Load all of the plugins that were defined in ~/.zshrc
|
# Load all of the plugins that were defined in ~/.zshrc
|
||||||
for plugin ($plugins); do
|
for plugin ($plugins); do
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,7 @@ _1st_arguments=(
|
||||||
'options:display install options specific to formula.'
|
'options:display install options specific to formula.'
|
||||||
'outdated:list formulas for which a newer version is available.'
|
'outdated:list formulas for which a newer version is available.'
|
||||||
'prune:remove dead links.'
|
'prune:remove dead links.'
|
||||||
|
'reinstall:reinstall a formula'
|
||||||
{remove,rm,uninstall}':remove a formula.'
|
{remove,rm,uninstall}':remove a formula.'
|
||||||
'search:search for a formula (/regex/ or string).'
|
'search:search for a formula (/regex/ or string).'
|
||||||
'server:start a local web app that lets you browse formulae (requires Sinatra).'
|
'server:start a local web app that lets you browse formulae (requires Sinatra).'
|
||||||
|
|
@ -80,7 +81,7 @@ case "$words[1]" in
|
||||||
i|install|home|homepage|log|info|abv|uses|cat|deps|edit|options|versions)
|
i|install|home|homepage|log|info|abv|uses|cat|deps|edit|options|versions)
|
||||||
_brew_all_formulae
|
_brew_all_formulae
|
||||||
_wanted formulae expl 'all formulae' compadd -a formulae ;;
|
_wanted formulae expl 'all formulae' compadd -a formulae ;;
|
||||||
remove|rm|uninstall|unlink|cleanup|link|ln)
|
reinstall|remove|rm|uninstall|unlink|cleanup|link|ln)
|
||||||
_brew_installed_formulae
|
_brew_installed_formulae
|
||||||
_wanted installed_formulae expl 'installed formulae' compadd -a installed_formulae ;;
|
_wanted installed_formulae expl 'installed formulae' compadd -a installed_formulae ;;
|
||||||
esac
|
esac
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,20 @@
|
||||||
alias be="bundle exec"
|
alias be="bundle exec"
|
||||||
alias bi="bundle install"
|
|
||||||
alias bl="bundle list"
|
alias bl="bundle list"
|
||||||
alias bp="bundle package"
|
alias bp="bundle package"
|
||||||
alias bo="bundle open"
|
alias bo="bundle open"
|
||||||
alias bu="bundle update"
|
alias bu="bundle update"
|
||||||
|
|
||||||
|
if [[ "$(uname)" == 'Darwin' ]]
|
||||||
|
then
|
||||||
|
local cores_num="$(sysctl hw.ncpu | awk '{print $2}')"
|
||||||
|
else
|
||||||
|
local cores_num="$(nproc)"
|
||||||
|
fi
|
||||||
|
eval "alias bi='bundle install --jobs=$cores_num'"
|
||||||
|
|
||||||
# The following is based on https://github.com/gma/bundler-exec
|
# The following is based on https://github.com/gma/bundler-exec
|
||||||
|
|
||||||
bundled_commands=(annotate berks cap capify cucumber foodcritic foreman guard jekyll kitchen knife middleman nanoc rackup rainbows rake rspec ruby shotgun spec spin spork strainer tailor thin thor unicorn unicorn_rails puma)
|
bundled_commands=(annotate berks cap capify cucumber foodcritic foreman guard jekyll kitchen knife middleman nanoc rackup rainbows rake rspec ruby shotgun spec spin spork strainer tailor taps thin thor unicorn unicorn_rails puma)
|
||||||
|
|
||||||
## Functions
|
## Functions
|
||||||
|
|
||||||
|
|
@ -42,3 +49,4 @@ for cmd in $bundled_commands; do
|
||||||
compdef _$cmd bundled_$cmd=$cmd
|
compdef _$cmd bundled_$cmd=$cmd
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,12 @@
|
||||||
# c. Or, use this file as a oh-my-zsh plugin.
|
# c. Or, use this file as a oh-my-zsh plugin.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
#Alias
|
||||||
|
alias gf='git flow'
|
||||||
|
alias gcd='git checkout develop'
|
||||||
|
alias gch='git checkout hotfix'
|
||||||
|
alias gcr='git checkout release'
|
||||||
|
|
||||||
_git-flow ()
|
_git-flow ()
|
||||||
{
|
{
|
||||||
local curcontext="$curcontext" state line
|
local curcontext="$curcontext" state line
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,8 @@ alias gst='git status'
|
||||||
compdef _git gst=git-status
|
compdef _git gst=git-status
|
||||||
alias gd='git diff'
|
alias gd='git diff'
|
||||||
compdef _git gd=git-diff
|
compdef _git gd=git-diff
|
||||||
|
alias gdc='git diff --cached'
|
||||||
|
compdef _git gdc=git-diff
|
||||||
alias gl='git pull'
|
alias gl='git pull'
|
||||||
compdef _git gl=git-pull
|
compdef _git gl=git-pull
|
||||||
alias gup='git pull --rebase'
|
alias gup='git pull --rebase'
|
||||||
|
|
@ -54,9 +56,9 @@ compdef gcount=git
|
||||||
alias gcl='git config --list'
|
alias gcl='git config --list'
|
||||||
alias gcp='git cherry-pick'
|
alias gcp='git cherry-pick'
|
||||||
compdef _git gcp=git-cherry-pick
|
compdef _git gcp=git-cherry-pick
|
||||||
alias glg='git log --stat --max-count=5'
|
alias glg='git log --stat --max-count=10'
|
||||||
compdef _git glg=git-log
|
compdef _git glg=git-log
|
||||||
alias glgg='git log --graph --max-count=5'
|
alias glgg='git log --graph --max-count=10'
|
||||||
compdef _git glgg=git-log
|
compdef _git glgg=git-log
|
||||||
alias glgga='git log --graph --decorate --all'
|
alias glgga='git log --graph --decorate --all'
|
||||||
compdef _git glgga=git-log
|
compdef _git glgga=git-log
|
||||||
|
|
@ -72,7 +74,10 @@ alias grh='git reset HEAD'
|
||||||
alias grhh='git reset HEAD --hard'
|
alias grhh='git reset HEAD --hard'
|
||||||
alias gclean='git reset --hard && git clean -dfx'
|
alias gclean='git reset --hard && git clean -dfx'
|
||||||
alias gwc='git whatchanged -p --abbrev-commit --pretty=medium'
|
alias gwc='git whatchanged -p --abbrev-commit --pretty=medium'
|
||||||
alias gf='git ls-files | grep'
|
|
||||||
|
#remove the gf alias
|
||||||
|
#alias gf='git ls-files | grep'
|
||||||
|
|
||||||
alias gpoat='git push origin --all && git push origin --tags'
|
alias gpoat='git push origin --all && git push origin --tags'
|
||||||
alias gmt='git mergetool --no-prompt'
|
alias gmt='git mergetool --no-prompt'
|
||||||
compdef _git gm=git-mergetool
|
compdef _git gm=git-mergetool
|
||||||
|
|
@ -134,3 +139,17 @@ alias gpush='git push'
|
||||||
compdef gpush=git
|
compdef gpush=git
|
||||||
alias gpull='git pull'
|
alias gpull='git pull'
|
||||||
compdef gpull=git
|
compdef gpull=git
|
||||||
|
|
||||||
|
# Work In Progress (wip)
|
||||||
|
# These features allow to pause a branch development and switch to another one (wip)
|
||||||
|
# When you want to go back to work, just unwip it
|
||||||
|
#
|
||||||
|
# This function return a warning if the current branch is a wip
|
||||||
|
function work_in_progress() {
|
||||||
|
if $(git log -n 1 | grep -q -c wip); then
|
||||||
|
echo "WIP!!"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
# these alias commit and uncomit wip branches
|
||||||
|
alias gwip='git add -A; git ls-files --deleted -z | xargs -0 git rm; git commit -m "wip"'
|
||||||
|
alias gunwip='git log -n 1 | grep -q -c wip && git reset HEAD~1'
|
||||||
|
|
|
||||||
58
plugins/jump/jump.plugin.zsh
Normal file
58
plugins/jump/jump.plugin.zsh
Normal file
|
|
@ -0,0 +1,58 @@
|
||||||
|
# Easily jump around the file system by manually adding marks
|
||||||
|
# marks are stored as symbolic links in the directory $MARKPATH (default $HOME/.marks)
|
||||||
|
#
|
||||||
|
# jump FOO: jump to a mark named FOO
|
||||||
|
# mark FOO: create a mark named FOO
|
||||||
|
# unmark FOO: delete a mark
|
||||||
|
# marks: lists all marks
|
||||||
|
#
|
||||||
|
export MARKPATH=$HOME/.marks
|
||||||
|
|
||||||
|
jump() {
|
||||||
|
cd -P "$MARKPATH/$1" 2>/dev/null || echo "No such mark: $1"
|
||||||
|
}
|
||||||
|
|
||||||
|
mark() {
|
||||||
|
if (( $# == 0 )); then
|
||||||
|
MARK=$(basename "$(pwd)")
|
||||||
|
else
|
||||||
|
MARK="$1"
|
||||||
|
fi
|
||||||
|
if read -q \?"Mark $(pwd) as ${MARK}? (y/n) "; then
|
||||||
|
mkdir -p "$MARKPATH"; ln -s "$(pwd)" "$MARKPATH/$MARK"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
unmark() {
|
||||||
|
rm -i "$MARKPATH/$1"
|
||||||
|
}
|
||||||
|
|
||||||
|
autoload colors
|
||||||
|
marks() {
|
||||||
|
for link in $MARKPATH/*(@); do
|
||||||
|
local markname="$fg[cyan]${link:t}$reset_color"
|
||||||
|
local markpath="$fg[blue]$(readlink $link)$reset_color"
|
||||||
|
printf "%s\t" $markname
|
||||||
|
printf "-> %s \t\n" $markpath
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
_completemarks() {
|
||||||
|
if [[ $(ls "${MARKPATH}" | wc -l) -gt 1 ]]; then
|
||||||
|
reply=($(ls $MARKPATH/**/*(-) | grep : | sed -E 's/(.*)\/([_\da-zA-Z\-]*):$/\2/g'))
|
||||||
|
else
|
||||||
|
if readlink -e "${MARKPATH}"/* &>/dev/null; then
|
||||||
|
reply=($(ls "${MARKPATH}"))
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
compctl -K _completemarks jump
|
||||||
|
compctl -K _completemarks unmark
|
||||||
|
|
||||||
|
_mark_expansion() {
|
||||||
|
setopt extendedglob
|
||||||
|
autoload -U modify-current-argument
|
||||||
|
modify-current-argument '$(readlink "$MARKPATH/$ARG")'
|
||||||
|
}
|
||||||
|
zle -N _mark_expansion
|
||||||
|
bindkey "^g" _mark_expansion
|
||||||
2
plugins/mosh/mosh.plugin.zsh
Normal file
2
plugins/mosh/mosh.plugin.zsh
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
# Allow SSH tab completion for mosh hostnames
|
||||||
|
compdef mosh=ssh
|
||||||
|
|
@ -1,5 +1,13 @@
|
||||||
# Open the node api for your current version to the optional section.
|
# Open the node api for your current version to the optional section.
|
||||||
# TODO: Make the section part easier to use.
|
# TODO: Make the section part easier to use.
|
||||||
function node-docs {
|
function node-docs {
|
||||||
open "http://nodejs.org/docs/$(node --version)/api/all.html#all_$1"
|
# get the open command
|
||||||
|
local open_cmd
|
||||||
|
if [[ $(uname -s) == 'Darwin' ]]; then
|
||||||
|
open_cmd='open'
|
||||||
|
else
|
||||||
|
open_cmd='xdg-open'
|
||||||
|
fi
|
||||||
|
|
||||||
|
$open_cmd "http://nodejs.org/docs/$(node --version)/api/all.html#all_$1"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
26
plugins/nvm/_nvm
Normal file
26
plugins/nvm/_nvm
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
#compdef nvm
|
||||||
|
#autoload
|
||||||
|
|
||||||
|
[[ -s ~/.nvm/nvm.sh ]] || return 0
|
||||||
|
|
||||||
|
local -a _1st_arguments
|
||||||
|
_1st_arguments=(
|
||||||
|
'help:show help'
|
||||||
|
'install:download and install a version'
|
||||||
|
'uninstall:uninstall a version'
|
||||||
|
'use:modify PATH to use version'
|
||||||
|
'run:run version with given arguments'
|
||||||
|
'ls:list installed versions or versions matching a given description'
|
||||||
|
'ls-remote:list remote versions available for install'
|
||||||
|
'deactivate:undo effects of NVM on current shell'
|
||||||
|
'alias:show or set aliases'
|
||||||
|
'unalias:deletes an alias'
|
||||||
|
'copy-packages:install global NPM packages to current version'
|
||||||
|
)
|
||||||
|
|
||||||
|
_arguments -C '*:: :->subcmds' && return 0
|
||||||
|
|
||||||
|
if (( CURRENT == 1 )); then
|
||||||
|
_describe -t commands "nvm subcommand" _1st_arguments
|
||||||
|
return
|
||||||
|
fi
|
||||||
3
plugins/nvm/nvm.plugin.zsh
Normal file
3
plugins/nvm/nvm.plugin.zsh
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
# The addition 'nvm install' attempts in ~/.profile
|
||||||
|
|
||||||
|
[[ -s ~/.nvm/nvm.sh ]] && . ~/.nvm/nvm.sh
|
||||||
|
|
@ -6,8 +6,8 @@
|
||||||
_pip_all() {
|
_pip_all() {
|
||||||
# we cache the list of packages (originally from the macports plugin)
|
# we cache the list of packages (originally from the macports plugin)
|
||||||
if (( ! $+piplist )); then
|
if (( ! $+piplist )); then
|
||||||
echo -n " (caching package index...)"
|
echo -n " (caching package index...)"
|
||||||
piplist=($(pip search * | cut -d ' ' -f 1 | tr '[A-Z]' '[a-z]'))
|
piplist=($(pip search * | cut -d ' ' -f 1 | tr '[A-Z]' '[a-z]'))
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -62,8 +62,13 @@ case "$words[1]" in
|
||||||
'(--no-install)--no-install[only download packages]' \
|
'(--no-install)--no-install[only download packages]' \
|
||||||
'(--no-download)--no-download[only install downloaded packages]' \
|
'(--no-download)--no-download[only install downloaded packages]' \
|
||||||
'(--install-option)--install-option[extra arguments to be supplied to the setup.py]' \
|
'(--install-option)--install-option[extra arguments to be supplied to the setup.py]' \
|
||||||
|
'(--single-version-externally-managed)--single-version-externally-managed[do not download/install dependencies. requires --record or --root]'\
|
||||||
|
'(--root)--root[treat this path as a fake chroot, installing into it. implies --single-version-externally-managed]'\
|
||||||
|
'(--record)--record[file to record all installed files to.]'\
|
||||||
|
'(-r --requirement)'{-r,--requirement}'[requirements file]: :_files'\
|
||||||
|
'(-e --editable)'{-e,--editable}'[path of or url to source to link to instead of installing.]: :_files -/'\
|
||||||
'1: :->packages' && return 0
|
'1: :->packages' && return 0
|
||||||
|
|
||||||
if [[ "$state" == packages ]]; then
|
if [[ "$state" == packages ]]; then
|
||||||
_pip_all
|
_pip_all
|
||||||
_wanted piplist expl 'packages' compadd -a piplist
|
_wanted piplist expl 'packages' compadd -a piplist
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ compdef _rb19 rb19
|
||||||
|
|
||||||
function rb20 {
|
function rb20 {
|
||||||
if [ -z "$1" ]; then
|
if [ -z "$1" ]; then
|
||||||
rvm use "$ruby"
|
rvm use "$ruby20"
|
||||||
else
|
else
|
||||||
rvm use "$ruby20@$1"
|
rvm use "$ruby20@$1"
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,8 @@ elif [[ $('uname') == 'Darwin' ]]; then
|
||||||
|
|
||||||
for _sublime_path in $_sublime_darwin_paths; do
|
for _sublime_path in $_sublime_darwin_paths; do
|
||||||
if [[ -a $_sublime_path ]]; then
|
if [[ -a $_sublime_path ]]; then
|
||||||
alias st="'$_sublime_path'"
|
alias subl="'$_sublime_path'"
|
||||||
|
alias st=subl
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ if which tmux &> /dev/null
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Set the correct local config file to use.
|
# Set the correct local config file to use.
|
||||||
if [[ "$ZSH_TMUX_ITERM2" == "false" ]] && (( [[ -f $HOME/.tmux.conf ]] || -h $HOME/.tmux.conf ]] ))
|
if [[ "$ZSH_TMUX_ITERM2" == "false" ]] && [[ -f $HOME/.tmux.conf || -h $HOME/.tmux.conf ]]
|
||||||
then
|
then
|
||||||
#use this when they have a ~/.tmux.conf
|
#use this when they have a ~/.tmux.conf
|
||||||
export _ZSH_TMUX_FIXED_CONFIG="$zsh_tmux_plugin_path/tmux.extra.conf"
|
export _ZSH_TMUX_FIXED_CONFIG="$zsh_tmux_plugin_path/tmux.extra.conf"
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ function web_search() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# check whether the search engine is supported
|
# check whether the search engine is supported
|
||||||
if [[ ! $1 =~ '(google|bing|yahoo)' ]];
|
if [[ ! $1 =~ '(google|bing|yahoo|duckduckgo)' ]];
|
||||||
then
|
then
|
||||||
echo "Search engine $1 not supported."
|
echo "Search engine $1 not supported."
|
||||||
return 1
|
return 1
|
||||||
|
|
@ -24,8 +24,12 @@ function web_search() {
|
||||||
$open_cmd "$url"
|
$open_cmd "$url"
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
if [[ $1 == 'duckduckgo' ]]; then
|
||||||
url="${url}/search?q="
|
#slightly different search syntax for DDG
|
||||||
|
url="${url}/?q="
|
||||||
|
else
|
||||||
|
url="${url}/search?q="
|
||||||
|
fi
|
||||||
shift # shift out $1
|
shift # shift out $1
|
||||||
|
|
||||||
while [[ $# -gt 0 ]]; do
|
while [[ $# -gt 0 ]]; do
|
||||||
|
|
@ -34,10 +38,19 @@ function web_search() {
|
||||||
done
|
done
|
||||||
|
|
||||||
url="${url%?}" # remove the last '+'
|
url="${url%?}" # remove the last '+'
|
||||||
|
|
||||||
$open_cmd "$url"
|
$open_cmd "$url"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
alias bing='web_search bing'
|
alias bing='web_search bing'
|
||||||
alias google='web_search google'
|
alias google='web_search google'
|
||||||
alias yahoo='web_search yahoo'
|
alias yahoo='web_search yahoo'
|
||||||
|
alias ddg='web_search duckduckgo'
|
||||||
|
#add your own !bang searches here
|
||||||
|
alias wiki='web_search duckduckgo \!w'
|
||||||
|
alias news='web_search duckduckgo \!n'
|
||||||
|
alias youtube='web_search duckduckgo \!yt'
|
||||||
|
alias map='web_search duckduckgo \!m'
|
||||||
|
alias image='web_search duckduckgo \!i'
|
||||||
|
alias ducky='web_search duckduckgo \!'
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ ZSH_THEME="robbyrussell"
|
||||||
# Set to this to use case-sensitive completion
|
# Set to this to use case-sensitive completion
|
||||||
# CASE_SENSITIVE="true"
|
# CASE_SENSITIVE="true"
|
||||||
|
|
||||||
# Comment this out to disable bi-weekly auto-update checks
|
# Uncomment this to disable bi-weekly auto-update checks
|
||||||
# DISABLE_AUTO_UPDATE="true"
|
# DISABLE_AUTO_UPDATE="true"
|
||||||
|
|
||||||
# Uncomment to change how often before auto-updates occur? (in days)
|
# Uncomment to change how often before auto-updates occur? (in days)
|
||||||
|
|
|
||||||
|
|
@ -7,12 +7,12 @@ ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||||
git_custom_status() {
|
git_custom_status() {
|
||||||
local cb=$(current_branch)
|
local cb=$(current_branch)
|
||||||
if [ -n "$cb" ]; then
|
if [ -n "$cb" ]; then
|
||||||
echo "$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_PREFIX$(current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX"
|
echo "$(parse_git_dirty)%{$fg_bold[yellow]%}$(work_in_progress)%{$reset_color%}$ZSH_THEME_GIT_PROMPT_PREFIX$(current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
#RVM and git settings
|
#RVM and git settings
|
||||||
if [[ -s ~/.rvm/scripts/rvm ]] ; then
|
if [[ -s ~/.rvm/scripts/rvm ]] ; then
|
||||||
RPS1='$(git_custom_status)%{$fg[red]%}[`~/.rvm/bin/rvm-prompt`]%{$reset_color%} $EPS1'
|
RPS1='$(git_custom_status)%{$fg[red]%}[`~/.rvm/bin/rvm-prompt`]%{$reset_color%} $EPS1'
|
||||||
else
|
else
|
||||||
if which rbenv &> /dev/null; then
|
if which rbenv &> /dev/null; then
|
||||||
|
|
|
||||||
|
|
@ -5,16 +5,15 @@
|
||||||
#-------------------------------------------------------------------------------
|
#-------------------------------------------------------------------------------
|
||||||
|
|
||||||
# Color shortcuts
|
# Color shortcuts
|
||||||
R=$fg[red]
|
R=$fg_no_bold[red]
|
||||||
G=$fg[green]
|
G=$fg_no_bold[green]
|
||||||
M=$fg[magenta]
|
M=$fg_no_bold[magenta]
|
||||||
RB=$fg_bold[red]
|
Y=$fg_no_bold[yellow]
|
||||||
YB=$fg_bold[yellow]
|
B=$fg_no_bold[blue]
|
||||||
BB=$fg_bold[blue]
|
|
||||||
RESET=$reset_color
|
RESET=$reset_color
|
||||||
|
|
||||||
if [ "$(whoami)" = "root" ]; then
|
if [ "$(whoami)" = "root" ]; then
|
||||||
PROMPTCOLOR="%{$RB%}" PREFIX="-!-";
|
PROMPTCOLOR="%{$R%}" PREFIX="-!-";
|
||||||
else
|
else
|
||||||
PROMPTCOLOR="" PREFIX="---";
|
PROMPTCOLOR="" PREFIX="---";
|
||||||
fi
|
fi
|
||||||
|
|
@ -73,13 +72,14 @@ function custom_git_prompt() {
|
||||||
PROMPT='%B$PREFIX %2~ $(custom_git_prompt)%{$M%}%B»%b%{$RESET%} '
|
PROMPT='%B$PREFIX %2~ $(custom_git_prompt)%{$M%}%B»%b%{$RESET%} '
|
||||||
RPS1="${return_code}"
|
RPS1="${return_code}"
|
||||||
|
|
||||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$YB%}‹"
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$Y%}‹"
|
||||||
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$YB%}›%{$RESET%} "
|
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$Y%}›%{$RESET%} "
|
||||||
|
|
||||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$R%}*"
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$R%}*"
|
||||||
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
ZSH_THEME_GIT_PROMPT_CLEAN=""
|
||||||
|
|
||||||
ZSH_THEME_GIT_PROMPT_AHEAD="%{$BB%}➔"
|
ZSH_THEME_GIT_PROMPT_AHEAD="%{$B%}➔"
|
||||||
|
|
||||||
|
|
||||||
ZSH_THEME_GIT_STATUS_PREFIX=" "
|
ZSH_THEME_GIT_STATUS_PREFIX=" "
|
||||||
|
|
||||||
|
|
@ -90,7 +90,7 @@ ZSH_THEME_GIT_PROMPT_STAGED_RENAMED="%{$G%}R"
|
||||||
ZSH_THEME_GIT_PROMPT_STAGED_DELETED="%{$G%}D"
|
ZSH_THEME_GIT_PROMPT_STAGED_DELETED="%{$G%}D"
|
||||||
|
|
||||||
# Not-staged
|
# Not-staged
|
||||||
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$R%}⁇"
|
ZSH_THEME_GIT_PROMPT_UNTRACKED="%{$R%}?"
|
||||||
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$R%}M"
|
ZSH_THEME_GIT_PROMPT_MODIFIED="%{$R%}M"
|
||||||
ZSH_THEME_GIT_PROMPT_DELETED="%{$R%}D"
|
ZSH_THEME_GIT_PROMPT_DELETED="%{$R%}D"
|
||||||
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$R%}UU"
|
ZSH_THEME_GIT_PROMPT_UNMERGED="%{$R%}UU"
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,8 @@ function theme_preview() {
|
||||||
THEME_NAME=`echo $THEME | sed s/\.zsh-theme$//`
|
THEME_NAME=`echo $THEME | sed s/\.zsh-theme$//`
|
||||||
print "$fg[blue]${(l.((${COLUMNS}-${#THEME_NAME}-5))..─.)}$reset_color $THEME_NAME $fg[blue]───$reset_color"
|
print "$fg[blue]${(l.((${COLUMNS}-${#THEME_NAME}-5))..─.)}$reset_color $THEME_NAME $fg[blue]───$reset_color"
|
||||||
source "$THEMES_DIR/$THEME"
|
source "$THEMES_DIR/$THEME"
|
||||||
print -P $PROMPT
|
cols=$(tput cols)
|
||||||
|
print -P "$PROMPT $RPROMPT"
|
||||||
}
|
}
|
||||||
|
|
||||||
function banner() {
|
function banner() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue