From 10c32a95fef7248718de9dd7d398a627aea705ed Mon Sep 17 00:00:00 2001 From: Leonhard Kost Date: Tue, 8 Jul 2025 18:38:33 +0200 Subject: [PATCH] Add ripgrep as telescope dependency --- modules/home-manager/nixvim/plugins/telescope.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/home-manager/nixvim/plugins/telescope.nix b/modules/home-manager/nixvim/plugins/telescope.nix index b7d391e..f2facc3 100644 --- a/modules/home-manager/nixvim/plugins/telescope.nix +++ b/modules/home-manager/nixvim/plugins/telescope.nix @@ -1,4 +1,9 @@ +{ pkgs, ... }: { + home.packages = with pkgs; [ + ripgrep + ]; + programs.nixvim.plugins.telescope = { enable = true; extensions.fzf-native.enable = true;