# # Common aliases for ls # # Copyright © 1994–2017 martin f. krafft # Released under the terms of the Artistic Licence 2.0 # # Source repository: http://git.madduck.net/v/etc/zsh.git # alias l='ls --time-style=+%Y-%m-%d-%H:%M -gG' alias ll='ls -l' alias la='ls -a' alias lla='ls -la' alias lt='ls -lt' alias lrt='ls -lrt' alias lat='ls -lat' alias lart='ls -lart' # List only directories and symbolic links that point to directories alias lsd='ll -d *(-/DN)' # vim:ft=zsh