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.

38 lines
790 B

  1. return {
  2. 'saghen/blink.cmp',
  3. enabled = false,
  4. dependencies = {
  5. 'rafamadriz/friendly-snippets',
  6. 'mikavilpas/blink-ripgrep.nvim',
  7. },
  8. version = '*',
  9. opts = {
  10. appearance = {
  11. use_nvim_cmp_as_default = true,
  12. nerd_font_variant = 'mono'
  13. },
  14. sources = {
  15. default = {
  16. 'lsp',
  17. 'path',
  18. 'snippets',
  19. 'buffer',
  20. },
  21. },
  22. completion = {
  23. menu = {
  24. winblend = vim.o.pumblend,
  25. },
  26. },
  27. signature = {
  28. enabled = true,
  29. window = {
  30. winblend = vim.o.pumblend,
  31. },
  32. },
  33. },
  34. opts_extend = { "sources.default" }
  35. }