DEVELOPMENT ENVIRONMENT

~liljamo/nvim-flake

ref: 539075b769cd3ad58ce7645f5b80228004e54490 nvim-flake/config/plugins/telescope.nix -rw-r--r-- 198 bytes
539075b7Jonni Liljamo feat(toggleterm): init with lazygit toggle 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"
      ];
    };
  };
}