Skip to content

Commit

Permalink
style: link spinner highlight to DiagnosticInfo
Browse files Browse the repository at this point in the history
Change CopilotChatSpinner highlight group to link to DiagnosticInfo instead
of CursorColumn for better visual consistency with other UI elements.
  • Loading branch information
deathbeam committed Nov 29, 2024
1 parent b03f061 commit 95409ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/CopilotChat/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -924,7 +924,7 @@ function M.setup(config)
M.log_level(M.config.log_level)
end

vim.api.nvim_set_hl(0, 'CopilotChatSpinner', { link = 'CursorColumn', default = true })
vim.api.nvim_set_hl(0, 'CopilotChatSpinner', { link = 'DiagnosticInfo', default = true })
vim.api.nvim_set_hl(0, 'CopilotChatHelp', { link = 'DiagnosticInfo', default = true })
vim.api.nvim_set_hl(0, 'CopilotChatSelection', { link = 'Visual', default = true })
vim.api.nvim_set_hl(
Expand Down

0 comments on commit 95409ac

Please sign in to comment.