DEVELOPMENT ENVIRONMENT

~liljamo/nvim-flake

ref: cbfd082da31f5d5a2548b27c6fe7e0abcb251abd nvim-flake/config/plugins/telescope.nix -rw-r--r-- 198 bytes
cbfd082dJonni Liljamo feat(cmp): init 3 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  plugins.telescope = {
    enable = true;
    keymaps = {
      "<leader>g" = "live_grep";
    };
    settings.defaults = {
      file_ignore_patterns = [
        "%.lock"
      ];
    };
  };
}