nix-community.nixvim/plugins/telescope/project-nvim.nix
2022-10-25 00:15:09 +01:00

15 lines
332 B
Nix

{ pkgs, config, lib, ...}:
with lib;
let
cfg = config.plugins.telescope.extensions.project-nvim;
in
{
options.plugins.telescope.extensions.project-nvim = {
enable = mkEnableOption "Enable project-nvim telescope extension";
};
config = mkIf cfg.enable {
plugins.telescope.enabledExtensions = [ "projects" ];
};
}