diff options
author | Stefan Ritter <xeno@thehappy.de> | 2010-07-07 10:04:06 +0200 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2010-07-07 10:04:06 +0200 |
commit | 9f446dae4e9bca8f70c9af93e5183ccd7d6daaab (patch) | |
tree | 4c5f0021c3d81da398b812ee64361986712d738f /zsh/zshrc | |
parent | 644373e236a37429f64d54220c0b4030066e7c1f (diff) |
Goto homedir as last action
Diffstat (limited to '')
-rw-r--r-- | zsh/zshrc | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -34,10 +34,7 @@ autoload zmv alias c="clear && fortune" -if [ "$HOST" = "galahad" ] || [ "$HOST" = "goliath" ] || [ "$HOST" = "papin" ]; then - alias ls="ls --color=auto" -fi - +alias ls="ls --color=auto" alias l="ls -lah" alias mkdir="mkdir -p" alias rmrf="rm -rf" @@ -117,3 +114,5 @@ cp_p() } END { print "" }' total_size=$(stat -c '%s' "${1}") count=0 } + +cd ~/ |