Mercurial > dotfiles
diff .shell.d/01.aliases.sh @ 39:62bfb554ab85
Reorganize zsh files so that bash can work as well.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Mon, 26 Jan 2009 13:21:00 -0600 |
parents | .zsh/01.aliases.zsh@c30d68fbd368 |
children | 7576736ca6fa |
line wrap: on
line diff
copy from .zsh/01.aliases.zsh copy to .shell.d/01.aliases.sh --- a/.zsh/01.aliases.zsh +++ b/.shell.d/01.aliases.sh @@ -1,10 +1,26 @@ #aliases and funtions to act like them -function less() { command less -M "$@" } -function ll() { command ls -lFh "$@" } -function ls() { command ls -F "$@" } -function la() { command ls -aF "$@" } -function lla() { command ls -laFh "$@" } -function screen() { command screen -U "$@" } -function ipy() { command ipython "$@" } -function memacs() { command open -a Emacs "$@" } -alias vi='vim' \ No newline at end of file +function less() { + command less -M "$@" +} +function ll() { + command ls -lFh "$@" +} +function ls() { + command ls -F "$@" +} +function la() { + command ls -aF "$@" +} +function lla() { + command ls -laFh "$@" +} +function screen() { + command screen -U "$@" +} +function ipy() { + command ipython "$@" +} +function memacs() { + command open -a Emacs "$@" +} +alias vi=vim