qol(nixvim@modules): added ripgrep

This commit is contained in:
2025-10-16 23:43:23 +01:00
parent 0dcc2dd3a2
commit 1403ac9377

View File

@@ -17,7 +17,10 @@ in
./plugins
];
config.home.packages = with pkgs; [
# formatters
nixfmt
# misc
ripgrep
];
config.programs.nixvim = lib.mkIf cfg.enable {
enable = true;
@@ -134,6 +137,13 @@ in
silent = true;
};
}
{
action = "<cmd>Telescope live_grep<cr>";
key = "<leader>fg";
options = {
silent = true;
};
}
];
};
}