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.

37 lines
769 B

1 month ago
1 month ago
  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. },
  20. },
  21. completion = {
  22. menu = {
  23. winblend = vim.o.pumblend,
  24. },
  25. },
  26. signature = {
  27. enabled = true,
  28. window = {
  29. winblend = vim.o.pumblend,
  30. },
  31. },
  32. },
  33. opts_extend = { "sources.default" }
  34. }