this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

back to avante

Seth 73f89513 f67bb663

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