Bringing repo up to date
This commit is contained in:
69
lua/avante_settings.lua
Normal file
69
lua/avante_settings.lua
Normal 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 = { "🤯", "🙄" },
|
||||
},
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user