flake/users/guanranwang/home-manager/applications/skim/default.nix
2023-11-29 20:08:07 +08:00

9 lines
233 B
Nix

{...}: {
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 .
};
}