From 9f85efaa605c2093489d24d6a2f6cf146741bbf0 Mon Sep 17 00:00:00 2001 From: Guanran Wang Date: Tue, 16 Jan 2024 21:16:54 +0800 Subject: [PATCH] home: skim: change default command --- .../home-manager/applications/skim/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/users/guanranwang/home-manager/applications/skim/default.nix b/users/guanranwang/home-manager/applications/skim/default.nix index fe139cf..4d90d21 100644 --- a/users/guanranwang/home-manager/applications/skim/default.nix +++ b/users/guanranwang/home-manager/applications/skim/default.nix @@ -1,9 +1,9 @@ { programs.skim = { enable = true; - defaultCommand = "rg --files || fd --type f || find ."; - # rg --files ran - # 4.40 ± 0.44 times faster than fd --type f - # 60.39 ± 5.80 times faster than find . + + # SPEED: fd > rg > find + # STARTUP TIME: find > rg > fd + defaultCommand = "fd --color never || rg --files --color never || find"; }; }