summaryrefslogtreecommitdiffstats
path: root/.zsh
diff options
context:
space:
mode:
authorFlorian Pritz <f-p@gmx.at>2009-06-24 14:00:05 +0200
committerFlorian Pritz <f-p@gmx.at>2009-06-24 14:00:05 +0200
commit853a0aae4f0435e1cfa133aff7cfae17c79543fe (patch)
tree5058976ee25c748c610d6adca9ee3b51a8dd1079 /.zsh
parent8910dd49556be286e3260e742c7c4ba145518b0d (diff)
downloaddotfiles-853a0aae4f0435e1cfa133aff7cfae17c79543fe.tar.gz
dotfiles-853a0aae4f0435e1cfa133aff7cfae17c79543fe.tar.xz
change ll ls and la
Diffstat (limited to '.zsh')
-rw-r--r--.zsh/rc/30functions2
-rw-r--r--.zsh/rc/60aliases3
2 files changed, 3 insertions, 2 deletions
diff --git a/.zsh/rc/30functions b/.zsh/rc/30functions
index c29169b..4345412 100644
--- a/.zsh/rc/30functions
+++ b/.zsh/rc/30functions
@@ -37,7 +37,7 @@ chpwd() {
# idea by Gigamo http://bbs.archlinux.org/viewtopic.php?pid=478094#p478094
ls () {
- /bin/ls -rlhbtF --color=auto $@ &&
+ /bin/ls -rhbtF --color=auto $@ &&
echo "${PURPLE}Files: ${BLUE}$(/bin/ls -l $@ | grep -v "^[l|d|total]" | wc -l) ${GREEN}--- ${PURPLE}Directories: ${BLUE}$(/bin/ls -l $@ | grep "^d" | wc -l)${NC}"
}
diff --git a/.zsh/rc/60aliases b/.zsh/rc/60aliases
index ed1d16a..b0b17f4 100644
--- a/.zsh/rc/60aliases
+++ b/.zsh/rc/60aliases
@@ -14,8 +14,9 @@ alias dus='du -skh'
alias df='pydf'
# function to make ls look nice is below
-alias ll='ls'
+alias ll='ls -l'
alias la='ls -a'
+alias lla='ls -la'
alias newpkgb=' cp $HOME/misc/aur/PKGBUILD.proto PKGBUILD'