about summary refs log tree commit diff stats
path: root/modules/home.legacy/conf/nvim/plgs/telescope/keymaps/default.nix
blob: e551cc5a1ffb3fcf8e3187d740d3bf05e9f8c329 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{...}: {
  programs.nixvim.plugins.telescope.keymaps = {
    "<space>rg" = {
      action = "live_grep";
      options = {
        desc = "[rg] in a live session";
      };
    };
  };
}