You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

115 lines
5.3 KiB

  1. return {
  2. 'saghen/blink.cmp',
  3. dependencies = {
  4. 'rafamadriz/friendly-snippets',
  5. 'mikavilpas/blink-ripgrep.nvim',
  6. },
  7. version = '*',
  8. opts = {
  9. appearance = {
  10. use_nvim_cmp_as_default = true,
  11. nerd_font_variant = 'mono'
  12. },
  13. sources = {
  14. default = {
  15. 'lsp',
  16. 'path',
  17. 'snippets',
  18. 'buffer',
  19. 'ripgrep',
  20. },
  21. providers = {
  22. ripgrep = {
  23. module = "blink-ripgrep",
  24. name = "Ripgrep",
  25. -- the options below are optional, some default values are shown
  26. ---@module "blink-ripgrep"
  27. ---@type blink-ripgrep.Options
  28. opts = {
  29. -- For many options, see `rg --help` for an exact description of
  30. -- the values that ripgrep expects.
  31. -- the minimum length of the current word to start searching
  32. -- (if the word is shorter than this, the search will not start)
  33. prefix_min_len = 3,
  34. -- The number of lines to show around each match in the preview
  35. -- (documentation) window. For example, 5 means to show 5 lines
  36. -- before, then the match, and another 5 lines after the match.
  37. context_size = 5,
  38. -- The maximum file size of a file that ripgrep should include in
  39. -- its search. Useful when your project contains large files that
  40. -- might cause performance issues.
  41. -- Examples:
  42. -- "1024" (bytes by default), "200K", "1M", "1G", which will
  43. -- exclude files larger than that size.
  44. max_filesize = "1M",
  45. -- Specifies how to find the root of the project where the ripgrep
  46. -- search will start from. Accepts the same options as the marker
  47. -- given to `:h vim.fs.root()` which offers many possibilities for
  48. -- configuration. If none can be found, defaults to Neovim's cwd.
  49. --
  50. -- Examples:
  51. -- - ".git" (default)
  52. -- - { ".git", "package.json", ".root" }
  53. project_root_marker = ".git",
  54. -- The casing to use for the search in a format that ripgrep
  55. -- accepts. Defaults to "--ignore-case". See `rg --help` for all the
  56. -- available options ripgrep supports, but you can try
  57. -- "--case-sensitive" or "--smart-case".
  58. search_casing = "--ignore-case",
  59. -- (advanced) Any additional options you want to give to ripgrep.
  60. -- See `rg -h` for a list of all available options. Might be
  61. -- helpful in adjusting performance in specific situations.
  62. -- If you have an idea for a default, please open an issue!
  63. --
  64. -- Not everything will work (obviously).
  65. additional_rg_options = {},
  66. -- When a result is found for a file whose filetype does not have a
  67. -- treesitter parser installed, fall back to regex based highlighting
  68. -- that is bundled in Neovim.
  69. fallback_to_regex_highlighting = true,
  70. -- Absolute root paths where the rg command will not be executed.
  71. -- Usually you want to exclude paths using gitignore files or
  72. -- ripgrep specific ignore files, but this can be used to only
  73. -- ignore the paths in blink-ripgrep.nvim, maintaining the ability
  74. -- to use ripgrep for those paths on the command line. If you need
  75. -- to find out where the searches are executed, enable `debug` and
  76. -- look at `:messages`.
  77. ignore_paths = {},
  78. -- Show debug information in `:messages` that can help in
  79. -- diagnosing issues with the plugin.
  80. debug = false,
  81. },
  82. -- (optional) customize how the results are displayed. Many options
  83. -- are available - make sure your lua LSP is set up so you get
  84. -- autocompletion help
  85. transform_items = function(_, items)
  86. for _, item in ipairs(items) do
  87. -- example: append a description to easily distinguish rg results
  88. item.labelDetails = {
  89. description = "(rg)",
  90. }
  91. end
  92. return items
  93. end,
  94. },
  95. },
  96. },
  97. signature = {
  98. enabled = true,
  99. },
  100. },
  101. opts_extend = { "sources.default" }
  102. }