70 lines
1.0 KiB
Lua
70 lines
1.0 KiB
Lua
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 = { "🤯", "🙄" },
|
||
},
|
||
},
|
||
})
|