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

103 lines
3.0 KiB
Bash
Raw Normal View History

2011-07-28 19:43:26 +00:00
setopt correct # Correct commands.
setopt correct_all # Correct all arguments.
2011-07-14 20:16:22 +00:00
# The 'ls' Family
# ------------------------------------------------------------------------------
if [[ "$DISABLE_COLOR" != 'true' ]]; then
if (( ${+commands[dircolors]} )); then
dircolors="${commands[dircolors]}"
fi
if (( ${+commands[gdircolors]} )); then
dircolors="${commands[gdircolors]}"
fi
if [[ -x "$dircolors" ]] && [[ -e "$HOME/.dir_colors" ]]; 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
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 19:43:26 +00:00
alias cd='nocorrect cd'
alias cp='nocorrect cp -i'
2011-07-28 19:43:26 +00:00
alias find='noglob find'
alias gcc='nocorrect gcc'
alias ln='nocorrect ln -i'
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 rm='nocorrect rm -i'
alias scp='nocorrect scp'
alias du='du -kh'
alias df='df -kh'
alias pu='pushd'
alias po='popd'
alias _='sudo'
2011-07-14 20:16:22 +00:00
alias o='open'
alias e="$EDITOR"
2011-07-14 20:16:22 +00:00
alias v="$PAGER"
alias b="$BROWSER"
alias history='fc -l 1'
alias get='curl -C - -O'
alias afind='ack -il'
alias type='type -a'
alias ssh='ssh -X'
2011-07-14 20:16:22 +00:00
alias pbc='pbcopy'
alias pbp='pbpaste'
alias print-path='echo -e ${PATH//:/\\n}'
alias t="t --task-dir ~/.tasks --list todo.txt --delete-if-empty"
2011-07-28 19:43:26 +00:00
(( $+commands[ebuild] )) && alias ebuild='nocorrect ebuild'
(( $+commands[gist] )) && alias gist='nocorrect gist'
(( $+commands[heroku] )) && alias heroku='nocorrect heroku'
(( $+commands[hpodder] )) && alias hpodder='nocorrect hpodder'
(( $+commands[mysql] )) && alias mysql='nocorrect mysql'
if [[ -x "${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
if [[ "$DISABLE_COLOR" != 'true' ]]; then
if [[ -x "${commands[colordiff]}" ]]; then
alias diff='colordiff -u'
compdef colordiff=diff
elif [[ -x "${commands[git]}" ]]; then
function diff() {
git --no-pager diff --color=always --no-ext-diff --no-index "$@";
}
compdef _git diff=git-diff
else
alias diff='diff -u'
fi
if [[ -x "${commands[colormake]}" ]]; then
alias make='colormake'
compdef colormake=make
fi
fi
# Terminal Multiplexer
alias sl="screen -list"
alias sr="screen -a -A -U -D -R"
alias sn="screen -U -S"
alias tl="tmux list-sessions"