nixos-configs/common/modules/bash/programs.nix

20 lines
331 B
Nix
Raw Normal View History

2023-10-15 16:05:28 -04:00
{ ... }: {
programs = {
fzf = {
enable = true;
enableBashIntegration = true;
};
ripgrep = {
enable = true;
arguments = [
2023-10-15 16:16:31 -04:00
"--max-columns=150"
"--max-columns-preview"
"--hidden"
"--glob=!.git/*"
"--smart-case"
2023-10-15 16:05:28 -04:00
];
};
jq.enable = true;
};
}