dotfiles/nix/modules/home-manager/features/cli/fzf.nix

11 lines
150 B
Nix
Raw Normal View History

2024-03-16 22:12:53 +00:00
{
programs.fzf = {
enable = true;
enableZshIntegration = true;
};
2024-11-30 22:33:45 +00:00
home.sessionVariables = {
FZF_DEFAULT_OPTS = "--reverse";
};
2024-03-16 22:12:53 +00:00
}