fix(fzf-lua): explicitly enable man

This commit is contained in:
Barrett Ruth 2026-02-18 11:02:18 -05:00
parent 3ea398e002
commit 23314b366a
Signed by: barrett
GPG key ID: A6C96C9349D2FC81

View file

@ -7,6 +7,8 @@
}:
let
repoDir = "${config.home.homeDirectory}/.config/nix";
ripgrep = config.programs.ripgrep.enable;
claude = true;
@ -191,6 +193,11 @@ in
}
'';
documentation = {
enable = true;
man.enable = true;
};
programs.zsh = {
enable = true;
dotDir = "${config.xdg.configHome}/zsh";
@ -267,11 +274,6 @@ in
enableZshIntegration = true;
};
documentation = {
enable = true;
man.enable = true;
};
programs.direnv = {
enable = true;
enableZshIntegration = true;
@ -358,5 +360,4 @@ in
config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/.config/nix/config/tmux/themes/midnight.conf";
xdg.configFile."tmux/themes/daylight.conf".source =
config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/.config/nix/config/tmux/themes/daylight.conf";
}