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.

53 lines
1.1 KiB

  1. return {
  2. 'saghen/blink.cmp',
  3. lazy = false,
  4. dependencies = {
  5. 'rafamadriz/friendly-snippets',
  6. 'mikavilpas/blink-ripgrep.nvim',
  7. },
  8. version = '1.*',
  9. opts = {
  10. completion = {
  11. menu = {
  12. auto_show = true,
  13. winblend = vim.o.pumblend,
  14. draw = {
  15. columns = {
  16. { "label", "label_description", gap = 1 },
  17. { "kind_icon", "kind", gap = 1 }
  18. },
  19. }
  20. },
  21. documentation = { auto_show = true, auto_show_delay_ms = 500 },
  22. ghost_text = { enabled = false },
  23. },
  24. appearance = {
  25. use_nvim_cmp_as_default = true,
  26. nerd_font_variant = 'mono'
  27. },
  28. sources = {
  29. default = {
  30. 'lsp',
  31. 'path',
  32. 'snippets',
  33. 'buffer',
  34. },
  35. },
  36. signature = {
  37. enabled = true,
  38. window = {
  39. winblend = vim.o.pumblend,
  40. },
  41. },
  42. },
  43. opts_extend = { "sources.default" }
  44. }