13 lines
203 B
Nix
13 lines
203 B
Nix
|
{
|
||
|
home-manager.users.opdavies = {
|
||
|
programs.fzf = {
|
||
|
enable = true;
|
||
|
enableZshIntegration = true;
|
||
|
};
|
||
|
|
||
|
home.sessionVariables = {
|
||
|
FZF_DEFAULT_OPTS = "--reverse";
|
||
|
};
|
||
|
};
|
||
|
}
|