Files
Olympus/modules/users/nathan/home-manager/features/fzf.nix
2026-04-22 09:46:04 -05:00

19 lines
290 B
Nix

{ ... }: {
flake.homeModules.nathan = { config, lib, pkgs, ... }: {
programs.fzf = {
enable = true;
enableZshIntegration = true;
tmux = {
#enableShellIntegration = true;
#shellIntegrationOptions = [];
};
};
};
}