diff options
author | Alan Pearce | 2023-03-28 19:33:09 +0200 |
---|---|---|
committer | Alan Pearce | 2023-03-28 19:33:09 +0200 |
commit | d3e0e778fed8c4c572f0c41f6b2db6b336e832c8 (patch) | |
tree | 122775703a1a25289d4f1e43b16dbddf8dcdaa3d /user | |
parent | 91e22d17e95bae5113f7fbb402081af9f43abdf7 (diff) | |
download | nixfiles-d3e0e778fed8c4c572f0c41f6b2db6b336e832c8.tar.lz nixfiles-d3e0e778fed8c4c572f0c41f6b2db6b336e832c8.tar.zst nixfiles-d3e0e778fed8c4c572f0c41f6b2db6b336e832c8.zip |
zsh: re-enable showing symlink targets with `ll`
Diffstat (limited to 'user')
-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 7427e4ea..67c5b5b0 100644 --- a/user/settings/zsh.nix +++ b/user/settings/zsh.nix @@ -92,7 +92,7 @@ in l1 = "ls -1"; ls = "ls ${lsOptions} -hF"; la = "ls ${lsOptions} -hA"; - ll = "ls ${lsOptions} ${lsIsoDate} -hlL"; + ll = "ls ${lsOptions} ${lsIsoDate} -hl"; lal = "ll -A"; lla = "lal"; llr = "ll -t"; |