dotfiles

*nix config files
git clone git://git.pyratebeard.net/dotfiles.git
Log | Files | Refs | README

commit 03d22d2c766d92f7fc2094fb6640bb93bd67b8bf
parent cd2e452a669445528d6124eaf46e7faecd0c40a3
Author: pyratebeard <root@pyratebeard.net>
Date:   Tue, 18 Jul 2017 00:01:50 +0100

auto ls function on chpwd

Diffstat:
Mzsh/.zshrc | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/zsh/.zshrc b/zsh/.zshrc @@ -12,4 +12,8 @@ # # Load configs for config (~/.zsh/*.zsh) source $config -setopt auto_cd -\ No newline at end of file +#setopt auto_cd +function chpwd() { + emulate -L zsh + ls -lA --color=auto +}