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.

46 lines
1.8 KiB

  1. return {
  2. "yetone/avante.nvim",
  3. event = "VeryLazy",
  4. version = false, -- Set this to "*" to always pull the latest release version, or set it to false to update to the latest code changes.
  5. opts = {
  6. },
  7. -- if you want to build from source then do `make BUILD_FROM_SOURCE=true`
  8. build = "make",
  9. -- build = "powershell -ExecutionPolicy Bypass -File Build.ps1 -BuildFromSource false" -- for windows
  10. dependencies = {
  11. "nvim-treesitter/nvim-treesitter",
  12. "stevearc/dressing.nvim",
  13. "nvim-lua/plenary.nvim",
  14. "MunifTanjim/nui.nvim",
  15. --- The below dependencies are optional,
  16. "echasnovski/mini.pick", -- for file_selector provider mini.pick
  17. "nvim-telescope/telescope.nvim", -- for file_selector provider telescope
  18. "hrsh7th/nvim-cmp", -- autocompletion for avante commands and mentions
  19. "nvim-tree/nvim-web-devicons", -- or echasnovski/mini.icons
  20. {
  21. -- support for image pasting
  22. "HakonHarnes/img-clip.nvim",
  23. event = "VeryLazy",
  24. opts = {
  25. -- recommended settings
  26. default = {
  27. embed_image_as_base64 = false,
  28. prompt_for_file_name = false,
  29. drag_and_drop = {
  30. insert_mode = true,
  31. },
  32. -- required for Windows users
  33. use_absolute_path = true,
  34. },
  35. },
  36. },
  37. {
  38. -- Make sure to set this up properly if you have lazy=true
  39. 'MeanderingProgrammer/render-markdown.nvim',
  40. opts = {
  41. file_types = { "markdown", "Avante" },
  42. },
  43. ft = { "markdown", "Avante" },
  44. },
  45. },
  46. }