diff options
author | Alan Pearce | 2019-10-05 22:19:15 +0200 |
---|---|---|
committer | Alan Pearce | 2019-10-05 22:19:15 +0200 |
commit | 5d1e8a4c28b6f72b6e8d6f8df2794f2cce9bc75c (patch) | |
tree | a64b428802aefbd280b5bf5baf71b266217eab31 | |
parent | 419e4d201ed661027243d4330439a9f0d5e37d21 (diff) | |
download | nixfiles-5d1e8a4c28b6f72b6e8d6f8df2794f2cce9bc75c.tar.lz nixfiles-5d1e8a4c28b6f72b6e8d6f8df2794f2cce9bc75c.tar.zst nixfiles-5d1e8a4c28b6f72b6e8d6f8df2794f2cce9bc75c.zip |
zsh: make l1 really simple
-rw-r--r-- | user/modules/zsh.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user/modules/zsh.nix b/user/modules/zsh.nix index 9544f86f..f5aebb88 100644 --- a/user/modules/zsh.nix +++ b/user/modules/zsh.nix @@ -56,7 +56,7 @@ in shellAliases = { l = "ls ${lsOptions} -Bp"; - l1="ls ${lsOptions} -1"; + l1="ls -1"; ls="ls ${lsOptions} -hF"; la="ls ${lsOptions} -hA"; ll="ls ${lsOptions} ${lsIsoDate} -hl"; |