From a64ff2cb9cb2ac76d3499b77442418b0b517988a Mon Sep 17 00:00:00 2001 From: Matthew Stobbs Date: Thu, 20 Aug 2026 12:39:31 -0500 Subject: [PATCH] fix yazi config --- demilich/home.nix | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/demilich/home.nix b/demilich/home.nix index f6370b6..cc33e69 100644 --- a/demilich/home.nix +++ b/demilich/home.nix @@ -402,8 +402,24 @@ yazi = { enable = true; enableZshIntegration = true; - settings = builtins.readFile ../config/yazi/yazi.toml; - theme = builtins.readFile ../config/yazi/themes/sprouting.toml; + flavors = { + sprouting = ../config/yazi/themes/sprouting.toml; + }; + settings = { + mgr = { + show_hidden = true; + sort_by = "natural"; + sort_sensitive = true; + sort_dir_first = true; + scrolloff = 5; + }; + }; + theme = { + flavor = { + dark = "sprouting"; + light = "sprouting"; + }; + }; }; zoxide = { enable = true;