diff options
Diffstat (limited to 'nix-conf/home')
-rw-r--r-- | nix-conf/home/includes/common.nix | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/nix-conf/home/includes/common.nix b/nix-conf/home/includes/common.nix index 39440e1..6a0c721 100644 --- a/nix-conf/home/includes/common.nix +++ b/nix-conf/home/includes/common.nix @@ -73,7 +73,6 @@ in jq libqalculate lscolors - lsd lynx mercurial nix-info @@ -331,4 +330,22 @@ in signByDefault = true; }; }; + + programs.lsd = { + enable = true; + settings = { + indicators = true; + #layout = "oneline"; + sorting.dir-grouping = "first"; + blocks = [ + "git" + "permission" + "user" + "group" + "size" + "date" + "name" + ]; + }; + }; } |