You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
374 B
9 lines
374 B
return function(c)
|
|
local set_hl = require('solarized.utils').set_hl
|
|
|
|
set_hl('NoiceFormatProgressTodo', { fg = c.base01, reverse = true })
|
|
set_hl('NoiceFormatProgressDone', { fg = c.cyan, reverse = true })
|
|
set_hl('NoiceLspProgressSpinner', { fg = c.cyan })
|
|
set_hl('NoiceLspProgressClient', { fg = c.blue })
|
|
set_hl('NoiceLspProgressTitle', { link = 'Title' })
|
|
end
|
|
|