adding notes

This commit is contained in:
Carlos
2025-05-04 23:17:54 -04:00
parent 47edf65083
commit 4cf1cf7554
12 changed files with 399 additions and 183 deletions

View File

@@ -1,17 +1,17 @@
return {
{
"CarGDev/avante.nvim",
"yetone/avante.nvim",
event = "VeryLazy",
lazy = false,
version = false, -- Always pull the latest change
opts = {
provider = "cargdev", -- API provider configuration
provider = "cargdev", -- API provider configuration
vendors = {
cargdev = {
name = "cargdev", -- Optional
name = "cargdev", -- Optional
endpoint = "https://api-ai.cargdev.io/api/generate",
api_key_name = "CARGDEV_API_KEY", -- reference the ENV VAR below
model = "qwen2.5-coder:7b",
model = "codellama:7b",
__inherited_from = "ollama", -- ensures compatibility
max_tokens = 8192,
},
@@ -21,12 +21,12 @@ return {
build = "make",
dependencies = {
"nvim-treesitter/nvim-treesitter", -- Syntax highlighting support
"stevearc/dressing.nvim", -- UI elements
"nvim-lua/plenary.nvim", -- Utility library
"MunifTanjim/nui.nvim", -- UI library for modal components
"stevearc/dressing.nvim", -- UI elements
"nvim-lua/plenary.nvim", -- Utility library
"MunifTanjim/nui.nvim", -- UI library for modal components
-- Optional dependencies:
"nvim-tree/nvim-web-devicons", -- Icons support
"zbirenbaum/copilot.lua", -- Copilot integration
"zbirenbaum/copilot.lua", -- Copilot integration
{
"HakonHarnes/img-clip.nvim", -- Image pasting support
event = "VeryLazy",
@@ -38,18 +38,19 @@ return {
drag_and_drop = {
insert_mode = true,
},
use_absolute_path = true, -- For Windows users
use_absolute_path = true, -- For Windows users
},
},
},
{
"MeanderingProgrammer/render-markdown.nvim", -- Render markdown support
opts = {
file_types = { "markdown", "Avante" },
},
"MeanderingProgrammer/render-markdown.nvim",
ft = { "markdown", "Avante" },
config = function()
require("render-markdown").setup({
file_types = { "markdown", "Avante" },
})
end,
},
},
},
}