22 lines
387 B
Nix
22 lines
387 B
Nix
{ ... }: {
|
|
programs = {
|
|
fzf = {
|
|
enable = true;
|
|
enableBashIntegration = true;
|
|
};
|
|
ripgrep = {
|
|
enable = true;
|
|
arguments = [
|
|
"--max-columns=150"
|
|
"--max-columns-preview"
|
|
"--hidden"
|
|
"--glob=!.git/*"
|
|
"--smart-case"
|
|
"--sort"
|
|
"path"
|
|
];
|
|
};
|
|
jq.enable = true;
|
|
htop.enable = true;
|
|
};
|
|
}
|