DEVELOPMENT ENVIRONMENT

~liljamo/nvim-flake

ref: 50fab9c918d99836bd7a807c603a9625ac3ad2e8 nvim-flake/config/plugins/telescope.nix -rw-r--r-- 198 bytes
50fab9c9Jonni Liljamo feat(precognition): 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"
      ];
    };
  };
}