mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-12 01:52:31 +01:00
Merge remote branch 'upstream/master'
This commit is contained in:
commit
8a8cd544c2
10 changed files with 74 additions and 35 deletions
|
|
@ -25,21 +25,6 @@ alias ss='sudo su -'
|
||||||
|
|
||||||
#alias g='grep -in'
|
#alias g='grep -in'
|
||||||
|
|
||||||
# Git related
|
|
||||||
alias g='git'
|
|
||||||
alias gst='git status'
|
|
||||||
alias gl='git pull'
|
|
||||||
alias gup='git fetch && git rebase'
|
|
||||||
alias gp='git push'
|
|
||||||
alias gd='git diff | mate'
|
|
||||||
alias gdv='git diff -w "$@" | vim -R -'
|
|
||||||
alias gc='git commit -v'
|
|
||||||
alias gca='git commit -v -a'
|
|
||||||
alias gb='git branch'
|
|
||||||
alias gba='git branch -a'
|
|
||||||
alias gcount='git shortlog -sn'
|
|
||||||
alias gcp='git cherry-pick'
|
|
||||||
|
|
||||||
# Show history
|
# Show history
|
||||||
alias history='fc -l 1'
|
alias history='fc -l 1'
|
||||||
|
|
||||||
|
|
@ -65,4 +50,4 @@ alias etp='mate app config lib db public spec test vendor/plugins vendor/gems Ra
|
||||||
alias etts='mate app config lib db public script spec test vendor/plugins vendor/gems Rakefile Capfile Todo &'
|
alias etts='mate app config lib db public script spec test vendor/plugins vendor/gems Rakefile Capfile Todo &'
|
||||||
|
|
||||||
# Editor Ruby file in TextMate
|
# Editor Ruby file in TextMate
|
||||||
alias mr='mate CHANGELOG app config db lib public script spec test'
|
alias mr='mate CHANGELOG app config db lib public script spec test'
|
||||||
|
|
|
||||||
|
|
@ -43,7 +43,7 @@ if [ -f ~/.ssh/known_hosts ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Complete on history
|
# Complete on history
|
||||||
# zstyle ':completion:*:history-words' stop yes
|
#zstyle ':completion:*:history-words' stop yes
|
||||||
# zstyle ':completion:*:history-words' remove-all-dups yes
|
#zstyle ':completion:*:history-words' remove-all-dups yes
|
||||||
# zstyle ':completion:*:history-words' list false
|
#zstyle ':completion:*:history-words' list false
|
||||||
# zstyle ':completion:*:history-words' menu yes
|
#zstyle ':completion:*:history-words' menu yes
|
||||||
|
|
|
||||||
|
|
@ -3,4 +3,6 @@ setopt correct_all
|
||||||
alias man='nocorrect man'
|
alias man='nocorrect man'
|
||||||
alias mv='nocorrect mv'
|
alias mv='nocorrect mv'
|
||||||
alias mysql='nocorrect mysql'
|
alias mysql='nocorrect mysql'
|
||||||
alias mv='nocorrect mv'
|
alias mkdir='nocorrect mkdir'
|
||||||
|
alias gist='nocorrect gist'
|
||||||
|
alias heroku='nocorrect heroku'
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ function tab() {
|
||||||
end
|
end
|
||||||
tell application "Terminal"
|
tell application "Terminal"
|
||||||
activate
|
activate
|
||||||
do script with command "cd $PWD; $*" in window 1
|
do script with command "cd \"$PWD\"; $*" in window 1
|
||||||
end tell
|
end tell
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
@ -58,3 +58,20 @@ function tm() {
|
||||||
cd $1
|
cd $1
|
||||||
mate $1
|
mate $1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# To use: add a .lighthouse file into your directory with the URL to the
|
||||||
|
# individual project. For example:
|
||||||
|
# https://rails.lighthouseapp.com/projects/8994
|
||||||
|
# Example usage: http://screencast.com/t/ZDgwNDUwNT
|
||||||
|
open_lighthouse_ticket () {
|
||||||
|
if [ ! -f .lighthouse-url ]; then
|
||||||
|
echo "There is no .lighthouse file in the current directory..."
|
||||||
|
return 0;
|
||||||
|
else
|
||||||
|
lighthouse_url=$(cat .lighthouse-url);
|
||||||
|
echo "Opening ticket #$1";
|
||||||
|
`open $lighthouse_url/tickets/$1`;
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
alias lho='open_lighthouse_ticket'
|
||||||
|
|
|
||||||
15
lib/git.zsh
15
lib/git.zsh
|
|
@ -20,3 +20,18 @@ function current_branch() {
|
||||||
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
|
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
|
||||||
echo ${ref#refs/heads/}
|
echo ${ref#refs/heads/}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Aliases
|
||||||
|
alias g='git'
|
||||||
|
alias gst='git status'
|
||||||
|
alias gl='git pull'
|
||||||
|
alias gup='git fetch && git rebase'
|
||||||
|
alias gp='git push'
|
||||||
|
alias gd='git diff | mate'
|
||||||
|
alias gdv='git diff -w "$@" | vim -R -'
|
||||||
|
alias gc='git commit -v'
|
||||||
|
alias gca='git commit -v -a'
|
||||||
|
alias gb='git branch'
|
||||||
|
alias gba='git branch -a'
|
||||||
|
alias gcount='git shortlog -sn'
|
||||||
|
alias gcp='git cherry-pick'
|
||||||
|
|
|
||||||
|
|
@ -15,5 +15,5 @@ if [ "$DISABLE_AUTO_UPDATE" = "true" ]
|
||||||
then
|
then
|
||||||
return
|
return
|
||||||
else
|
else
|
||||||
/bin/sh $ZSH/tools/check_for_upgrade.sh
|
/usr/bin/env zsh $ZSH/tools/check_for_upgrade.sh
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
8
themes/macovsky.zsh-theme
Normal file
8
themes/macovsky.zsh-theme
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
# ZSH Theme - Preview: http://gyazo.com/8becc8a7ed5ab54a0262a470555c3eed.png
|
||||||
|
local return_code="%(?..%{$fg[red]%}%? ↵%{$reset_color%})"
|
||||||
|
|
||||||
|
PROMPT='%{$fg[green]%}%~%{$reset_color%} $(git_prompt_info)%{$reset_color%}%B$%b '
|
||||||
|
RPS1="${return_code}"
|
||||||
|
|
||||||
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg[yellow]%}‹"
|
||||||
|
ZSH_THEME_GIT_PROMPT_SUFFIX="› %{$reset_color%}"
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
PROMPT='%{$fg_no_bold[cyan]%}%n%{$fg_no_bold[yellow]%}•%{$fg_no_bold[magenta]%}%3~$(git_prompt_info)%{$reset_color%}» '
|
PROMPT='%{$fg_no_bold[cyan]%}%n%{$fg_no_bold[magenta]%}➜%{$fg_no_bold[green]%}%3~$(git_prompt_info)%{$reset_color%}» '
|
||||||
RPROMPT='[%*]'
|
RPROMPT='[%*]'
|
||||||
|
|
||||||
# git theming
|
# git theming
|
||||||
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}(%{$fg_no_bold[green]%}"
|
ZSH_THEME_GIT_PROMPT_PREFIX="%{$fg_bold[blue]%}(%{$fg_no_bold[red]%}"
|
||||||
ZSH_THEME_GIT_PROMPT_SUFFIX=""
|
ZSH_THEME_GIT_PROMPT_SUFFIX=""
|
||||||
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[blue]%})"
|
ZSH_THEME_GIT_PROMPT_CLEAN="%{$fg_bold[blue]%})"
|
||||||
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[red]%}⚡%{$fg_bold[blue]%})"
|
ZSH_THEME_GIT_PROMPT_DIRTY="%{$fg_bold[yellow]%}✗%{$fg_bold[blue]%})"
|
||||||
|
|
||||||
# LS colors, made with http://geoff.greer.fm/lscolors/
|
# LS colors, made with http://geoff.greer.fm/lscolors/
|
||||||
export LSCOLORS="Gxfxcxdxbxegedabagacad"
|
export LSCOLORS="Gxfxcxdxbxegedabagacad"
|
||||||
|
|
|
||||||
6
themes/xiong-chiamiov-plus.zsh-theme
Normal file
6
themes/xiong-chiamiov-plus.zsh-theme
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
# user, host, full path, and time/date
|
||||||
|
# on two lines for easier vgrepping
|
||||||
|
# entry in a nice long thread on the Arch Linux forums: http://bbs.archlinux.org/viewtopic.php?pid=521888#p521888
|
||||||
|
PROMPT=$'%{\e[0;34m%}%B┌─[%b%{\e[0m%}%{\e[1;32m%}%n%{\e[1;30m%}@%{\e[0m%}%{\e[0;36m%}%m%{\e[0;34m%}%B]%b%{\e[0m%} - %b%{\e[0;34m%}%B[%b%{\e[1;37m%}%~%{\e[0;34m%}%B]%b%{\e[0m%} - %{\e[0;34m%}%B[%b%{\e[0;33m%}'%D{"%a %b %d, %I:%M"}%b$'%{\e[0;34m%}%B]%b%{\e[0m%}
|
||||||
|
%{\e[0;34m%}%B└─%B[%{\e[1;35m%}$%{\e[0;34m%}%B] <$(git_prompt_info)>%{\e[0m%}%b '
|
||||||
|
PS2=$' \e[0;34m%}%B>%{\e[0m%}%b '
|
||||||
|
|
@ -1,11 +1,22 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
current_epoch=$(($(date +%s) / 60 / 60 / 24))
|
function _current_epoch() {
|
||||||
|
echo $(($(date +%s) / 60 / 60 / 24))
|
||||||
|
}
|
||||||
|
|
||||||
|
function _update_zsh_update() {
|
||||||
|
echo "LAST_EPOCH=$(_current_epoch)" > ~/.zsh-update
|
||||||
|
}
|
||||||
|
|
||||||
if [ -f ~/.zsh-update ]
|
if [ -f ~/.zsh-update ]
|
||||||
then
|
then
|
||||||
. ~/.zsh-update
|
. ~/.zsh-update
|
||||||
epoch_diff=$(($current_epoch - $LAST_EPOCH))
|
|
||||||
|
if [[ -z "$LAST_EPOCH" ]]; then
|
||||||
|
_update_zsh_update && return 0;
|
||||||
|
fi
|
||||||
|
|
||||||
|
epoch_diff=$((${_current_epoch} - $LAST_EPOCH))
|
||||||
if [ $epoch_diff -gt 6 ]
|
if [ $epoch_diff -gt 6 ]
|
||||||
then
|
then
|
||||||
echo "[Oh My Zsh] Would you like to check for updates?"
|
echo "[Oh My Zsh] Would you like to check for updates?"
|
||||||
|
|
@ -15,14 +26,9 @@ then
|
||||||
then
|
then
|
||||||
/bin/sh $ZSH/tools/upgrade.sh
|
/bin/sh $ZSH/tools/upgrade.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Set the last epoch to the current so that we don't ask for another week
|
|
||||||
echo "LAST_EPOCH=${current_epoch}" > ~/.zsh-update
|
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
# TODO: refactor this so remove duplicates
|
|
||||||
# Create the ~/.zsh-update file with the current epoch info
|
|
||||||
echo "LAST_EPOCH=${current_epoch}" > ~/.zsh-update
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# update the zsh file
|
||||||
|
_update_zsh_update
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue