1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-01 12:50:27 +00:00
prezto/alias.zsh

129 lines
3.5 KiB
Bash
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
# Defines general aliases.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
setopt CORRECT # Correct commands.
2011-07-28 19:43:26 +00:00
2011-07-14 20:16:22 +00:00
# The 'ls' Family
if zstyle -t ':omz:alias:ls' color; then
if [[ -f "$HOME/.dir_colors" ]] && (( $+commands[dircolors] )); then
eval $(dircolors "$HOME/.dir_colors")
alias ls='ls -hF --group-directories-first --color=auto'
else
export CLICOLOR=1
export LSCOLORS="exfxcxdxbxegedabagacad"
alias ls='ls -G -F'
fi
fi
2011-07-28 20:16:27 +00:00
alias l='ls -1A' # Show files in one column.
alias ll='ls -lh' # Show human readable.
alias la='ls -lhA' # Show hidden files.
alias lx='ls -lhXB' # Sort by extension.
alias lk='ls -lhSr' # Sort by size, biggest last.
2011-07-14 20:16:22 +00:00
alias lc='ls -lhtcr' # Sort by and show change time, most recent last.
alias lu='ls -lhtur' # Sort by and show access time, most recent last.
alias lt='ls -lhtr' # Sort by date, most recent last.
alias lm='ls -lha | more' # Pipe through 'more'.
alias lr='ls -lhR' # Recursive ls.
alias sl='ls' # I often screw this up.
# General
2011-07-28 20:16:27 +00:00
alias _='sudo'
alias b="$BROWSER"
2011-07-28 19:43:26 +00:00
alias cd='nocorrect cd'
alias cp='nocorrect cp -i'
2011-07-28 20:16:27 +00:00
alias df='df -kh'
alias du='du -kh'
alias e="$EDITOR"
2011-07-28 19:43:26 +00:00
alias find='noglob find'
alias gcc='nocorrect gcc'
alias ln='nocorrect ln -i'
2011-07-28 20:16:27 +00:00
alias locate='noglob locate'
2011-07-28 19:43:26 +00:00
alias man='nocorrect man'
alias mkdir='nocorrect mkdir -p'
2011-07-28 19:43:26 +00:00
alias mv='nocorrect mv -i'
alias p="$PAGER"
2011-07-28 20:16:27 +00:00
alias po='popd'
alias pu='pushd'
alias rake='noglob rake'
2011-07-28 19:43:26 +00:00
alias rm='nocorrect rm -i'
alias scp='nocorrect scp'
alias type='type -a'
2011-07-28 20:16:27 +00:00
# Mac OS X
if [[ "$OSTYPE" != darwin* ]]; then
alias open='xdg-open'
alias get='wget --continue --progress=bar'
if (( $+commands[xclip] )); then
alias pbcopy='xclip -selection clipboard -in'
alias pbpaste='xclip -selection clipboard -out'
fi
if (( $+commands[xsel] )); then
alias pbcopy='xsel --clipboard --input'
alias pbpaste='xsel --clipboard --output'
fi
else
alias get='curl --continue-at - --location --progress-bar --remote-name'
fi
alias o='open'
2011-07-14 20:16:22 +00:00
alias pbc='pbcopy'
alias pbp='pbpaste'
2011-07-28 20:16:27 +00:00
# Top
if (( $+commands[htop] )); then
alias top=htop
else
alias topm='top -o vsize'
alias topc='top -o cpu'
fi
2009-09-03 18:45:23 +00:00
2011-07-28 20:16:27 +00:00
# Diff/Make
if zstyle -t ':omz:alias:diff' color; then
2011-12-28 15:34:23 +00:00
function diff() {
if (( $+commands[colordiff] )); then
"$commands[diff]" --unified "$@" | colordiff --difftype diffu
elif (( $+commands[git] )); then
git --no-pager diff --color=auto --no-ext-diff --no-index "$@"
else
"$commands[diff]" --unified "$@"
fi
}
function wdiff() {
2011-12-28 15:34:26 +00:00
if (( $+commands[wdiff] )); then
"$commands[wdiff]" \
--avoid-wraps \
--start-delete="$(print -n $FG[red])" \
--end-delete="$(print -n $FG[none])" \
--start-insert="$(print -n $FG[green])" \
--end-insert="$(print -n $FG[none])" \
"$@" \
| sed 's/^\(@@\( [+-][[:digit:]]*,[[:digit:]]*\)\{2\} @@\)$/;5;6m\10m/g'
2011-12-28 15:34:23 +00:00
elif (( $+commands[git] )); then
2011-12-28 15:34:26 +00:00
git --no-pager diff --color=auto --no-ext-diff --no-index --color-words "$@"
2011-12-28 15:34:23 +00:00
else
print "zsh: command not found: $0" >&2
fi
}
2011-07-28 20:16:27 +00:00
if (( $+commands[colormake] )); then
alias make='colormake'
compdef colormake=make
fi
fi
2011-07-28 20:16:27 +00:00
# Miscellaneous
2011-12-28 16:14:29 +00:00
(( $+commands[ack] )) && alias afind='nocorrect ack'
2011-07-28 20:16:27 +00:00
(( $+commands[ebuild] )) && alias ebuild='nocorrect ebuild'
(( $+commands[gist] )) && alias gist='nocorrect gist'
(( $+commands[heroku] )) && alias heroku='nocorrect heroku'
(( $+commands[mysql] )) && alias mysql='nocorrect mysql'