yep, more dotfiles

use lsr as my default ls command

This reverts commit 0de7b9273d29e89027b8c2c65d574507d48ce0b4.

wiro.world 69bda2e5 f6fbe659

verified
+4 -4
+4 -4
home-manager/fragments/shell.nix
··· 1 1 { config 2 2 , lib 3 3 , pkgs 4 + , upkgs 4 5 , lpkgs 5 6 6 7 , isDarwin ··· 70 71 # This is also a more pure version than using `__fish_ls_*` variables 71 72 # that depends on fish internal ls wrappers and can be overridden by 72 73 # bad configuration. (e.g. NixOS `environment.shellAliases` default) 73 - ls = "${lib.getExe pkgs.eza} --color=auto --icons=auto --hyperlink"; 74 + ls = "${lib.getExe upkgs.lsr}"; 74 75 75 76 pasters = "${lib.getExe pkgs.curl} --data-binary @- https://paste.rs/"; 76 77 ··· 95 96 tp = "trash-put"; 96 97 97 98 # Listing utilities 98 - l = "ls -aF"; 99 - ll = "ls -lhaF"; 100 - tree = "ls -T"; 99 + l = "ls -A1"; 100 + ll = "ls -Al"; 101 101 102 102 # Nix-related 103 103 ur = " unlink result";