idk
This commit is contained in:
parent
e482a1a6d1
commit
15c7bb1506
2 changed files with 38 additions and 0 deletions
|
@ -108,6 +108,8 @@
|
||||||
"nvim_plugin-zbirenbaum/copilot.lua".flake = false;
|
"nvim_plugin-zbirenbaum/copilot.lua".flake = false;
|
||||||
# "nvim_plugin-yetone/avante.nvim".url = "github:yetone/avante.nvim";
|
# "nvim_plugin-yetone/avante.nvim".url = "github:yetone/avante.nvim";
|
||||||
# "nvim_plugin-yetone/avante.nvim".flake = false;
|
# "nvim_plugin-yetone/avante.nvim".flake = false;
|
||||||
|
# "nvim_plugin-stevearc/dressing.nvim".url = "github:stevearc/dressing.nvim";
|
||||||
|
# "nvim_plugin-stevearc/dressing.nvim".flake = false;
|
||||||
"nvim_plugin-folke/neodev.nvim".url = "github:folke/neodev.nvim";
|
"nvim_plugin-folke/neodev.nvim".url = "github:folke/neodev.nvim";
|
||||||
"nvim_plugin-folke/neodev.nvim".flake = false;
|
"nvim_plugin-folke/neodev.nvim".flake = false;
|
||||||
"nvim_plugin-mrcjkb/rustaceanvim".url = "github:mrcjkb/rustaceanvim";
|
"nvim_plugin-mrcjkb/rustaceanvim".url = "github:mrcjkb/rustaceanvim";
|
||||||
|
|
36
lua/_disabled/avante.lua
Normal file
36
lua/_disabled/avante.lua
Normal 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,
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue