diff options
author | Alan Pearce | 2021-01-20 17:21:23 +0100 |
---|---|---|
committer | Alan Pearce | 2021-01-20 17:21:23 +0100 |
commit | 0a017369a8d4be8bc658245c1f9bb8afed7030c5 (patch) | |
tree | 6cef333664df09e744b7ca8f66adfb5ef30afdc2 /user/settings | |
parent | dc666f24e73989a811d11b42685ad6d4bd54f18c (diff) | |
download | nixfiles-0a017369a8d4be8bc658245c1f9bb8afed7030c5.tar.lz nixfiles-0a017369a8d4be8bc658245c1f9bb8afed7030c5.tar.zst nixfiles-0a017369a8d4be8bc658245c1f9bb8afed7030c5.zip |
zsh: follow symbolic links with ll
Diffstat (limited to 'user/settings')
-rw-r--r-- | user/settings/zsh.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user/settings/zsh.nix b/user/settings/zsh.nix index 64157ba3..97f90584 100644 --- a/user/settings/zsh.nix +++ b/user/settings/zsh.nix @@ -101,7 +101,7 @@ in l1 = "ls -1"; ls = "ls ${lsOptions} -hF"; la = "ls ${lsOptions} -hA"; - ll = "ls ${lsOptions} ${lsIsoDate} -hl"; + ll = "ls ${lsOptions} ${lsIsoDate} -hlL"; lal = "ll -A"; lla = "lal"; llr = "ll -t"; |