Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lua/CopilotChat/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ return {
history_path = vim.fn.stdpath('data') .. '/copilotchat_history', -- Default path to stored history

headers = {
user = '## User ', -- Header to use for user questions
assistant = '## Copilot ', -- Header to use for AI answers
tool = '## Tool ', -- Header to use for tool calls
user = 'User', -- Header to use for user questions
assistant = 'Copilot', -- Header to use for AI answers
tool = 'Tool', -- Header to use for tool calls
},

separator = '───', -- Separator to use in chat
Expand Down
Loading