all repos — nixfiles @ 743e0bfdc880a036d46f6f8e147be480cdfe8266

System and user configuration, managed by nix and home-manager

shell: install yazi
Alan Pearce alan@alanpearce.eu
Thu, 18 Apr 2024 09:15:26 +0200
commit

743e0bfdc880a036d46f6f8e147be480cdfe8266

parent

b0f71978e87f6193897dfe74498cc78b635fcce3

2 files changed, 19 insertions(+), 0 deletions(-)

jump to
M user/settings/shell.nixuser/settings/shell.nix
@@ -15,6 +15,9 @@ then ""     else "--time-style=long-iso";
 in
 {
+  imports = [
+    ./yazi.nix
+  ];
   home = {
     shellAliases = {
       l = "ls ${lsOptions} -Bp";
A user/settings/yazi.nix
@@ -0,0 +1,16 @@+{ pkgs
+, ...
+}: {
+  programs.yazi = {
+    enable = true;
+    enableFishIntegration = true;
+    settings = {
+      yazi = {
+        manager = {
+          sort_by = "natural";
+          sort_dir_first = true;
+        };
+      };
+    };
+  };
+}