Merge branch 'master' of ssh://git.joshuabell.xyz:3032/nvim

This commit is contained in:
RingOfStorms (Joshua Bell) 2024-10-31 12:59:31 -05:00
commit 00bc7cabfd
2 changed files with 38 additions and 0 deletions

36
lua/_disabled/avante.lua Normal file
View file

@ -0,0 +1,36 @@
return {
"yetone/avante.nvim",
dependencies = {
"nvim-treesitter/nvim-treesitter",
"stevearc/dressing.nvim",
"nvim-lua/plenary.nvim",
"MunifTanjim/nui.nvim",
--- The below dependencies are optional,
-- {
-- -- support for image pasting
-- "HakonHarnes/img-clip.nvim",
-- event = "VeryLazy",
-- opts = {
-- -- recommended settings
-- default = {
-- embed_image_as_base64 = false,
-- prompt_for_file_name = false,
-- drag_and_drop = {
-- insert_mode = true,
-- },
-- -- required for Windows users
-- use_absolute_path = true,
-- },
-- },
-- },
},
event = "VeryLazy",
lazy = false,
opts = {
provider = "claude",
},
config = function(_, opts)
require("avante_lib").load()
require("avante").setup(opts)
end,
}