From 1d13143751242166d2b154c9e9bc6b36a334e0a9 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Fri, 1 Mar 2024 13:54:15 +0100 Subject: [PATCH] add ripgrep as neovim dependency --- common/nvim/nvim.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/nvim/nvim.nix b/common/nvim/nvim.nix index b5875dd..bee1f70 100644 --- a/common/nvim/nvim.nix +++ b/common/nvim/nvim.nix @@ -1,7 +1,10 @@ { config, pkgs, inputs, ... }: { - + home.packages = with pkgs; [ + # needed for the nvim config, neovim itself is a system package already + ripgrep + ]; programs.neovim = { enable = true; defaultEditor = true;