DEVELOPMENT ENVIRONMENT

~liljamo/nvim-flake

ref: a94461139aa557f502b1e99e95f3ca30b972f2cb nvim-flake/config/plugins/telescope.nix -rw-r--r-- 499 bytes
a9446113Jonni Liljamo fix(telescope): show diagnostic messages completely a day ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  plugins.telescope = {
    enable = true;
    keymaps = {
      "<leader>g" = "live_grep";
      "<leader>f" = "find_files";
      "<leader>lr" = "lsp_references";
      "<leader>ld" = "diagnostics";
    };
    settings = {
      defaults = {
        file_ignore_patterns = [
          "%.lock"
        ];
      };
      pickers = {
        "diagnostics" = {
          wrap_results = true;
          line_width = "'full'";
        };
      };
    };
  };

  plugins.web-devicons.enable = true;
}