mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-03-10 09:27:25 +00:00
fix(copilot-chat): use up to date config for chat headers (#6543)
The config format changed a while ago due to function calling support Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
@@ -8,8 +8,11 @@ return {
|
|||||||
user = user:sub(1, 1):upper() .. user:sub(2)
|
user = user:sub(1, 1):upper() .. user:sub(2)
|
||||||
return {
|
return {
|
||||||
auto_insert_mode = true,
|
auto_insert_mode = true,
|
||||||
question_header = " " .. user .. " ",
|
headers = {
|
||||||
answer_header = " Copilot ",
|
user = " " .. user .. " ",
|
||||||
|
assistant = " Copilot ",
|
||||||
|
tool = " Tool ",
|
||||||
|
},
|
||||||
window = {
|
window = {
|
||||||
width = 0.4,
|
width = 0.4,
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user