summaryrefslogtreecommitdiff
path: root/nixvim/plugins/telescope.nix
blob: 32528af7b922b837712df4af39234d9d0bc71728 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  keymaps = [
    {
      action = "Telescope";
      key = "<leader>f";
      mode = "n";
      options = {
        noremap = true;
        silent = true;
      };
    }
  ];

  plugins.telescope = {
    enable = true;
  };
}