mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-24 17:23:09 +01:00
13 lines
153 B
Nix
13 lines
153 B
Nix
|
{
|
||
|
programs.fzf = {
|
||
|
enable = true;
|
||
|
|
||
|
defaultOptions = [
|
||
|
"--height 40%"
|
||
|
"--reverse"
|
||
|
"--border"
|
||
|
"--color=16"
|
||
|
];
|
||
|
};
|
||
|
}
|