Bringing repo up to date

This commit is contained in:
2025-10-12 17:42:02 -04:00
parent 1a9f6bc5bd
commit 2ef5662c33
8 changed files with 647 additions and 163 deletions

69
lua/avante_settings.lua Normal file
View File

@@ -0,0 +1,69 @@
require('avante').setup({
instructions_file = "avante.md",
provider = "ollama",
providers = {
ollama = {
endpoint = "http://localhost:11434",
model = "codellama:latest",
},
},
behavior = {
auto_focus_sidebar = true,
auto_suggestions = true, -- Experimental.
jump_result_buffer_on_finish = false,
},
windows = {
position = "right",
fillchars = "eob: ",
wrap = true,
width = 30,
height = 30,
sidebar_header = {
enabled = true,
align = "center",
rounded = true,
},
spinner = {
editing = {
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
},
generating = { "·", "", "", "", "", "" },
thinking = { "🤯", "🙄" },
},
},
})