home: skim: change default command

This commit is contained in:
Guanran Wang 2024-01-16 21:16:54 +08:00
parent fc6107a0e9
commit 9f85efaa60
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8

View file

@ -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";
};
}