From 9651e35f3ec429a7642d4e3ef434aa19af307890 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Fri, 7 Apr 2023 20:36:03 +0300 Subject: [PATCH] feat: add telescope extension for project-nvim --- modules/utility/telescope/config.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/utility/telescope/config.nix b/modules/utility/telescope/config.nix index 3caae1b..36b1823 100644 --- a/modules/utility/telescope/config.nix +++ b/modules/utility/telescope/config.nix @@ -109,6 +109,12 @@ in { then "telescope.load_extension('notify')" else "" } + + ${ + if config.vim.projects.project-nvim.enable + then "telescope.load_extension('projects')" + else "" + } ''; }; }