Files
Olympus/programs/terminal/fzf/fzf.nix
2024-10-02 00:54:05 -05:00

16 lines
210 B
Nix

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