mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-22 04:21:08 +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:
parent
b36b8589b6
commit
2c5eef7df7
1 changed files with 5 additions and 2 deletions
|
|
@ -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,
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue