mirror of
https://github.com/maxmx03/solarized.nvim.git
synced 2026-09-10 07:26:26 -04:00
feat: hl for noice-progress
This commit is contained in:
parent
3338aa4d9b
commit
55506b1ebb
|
|
@ -142,6 +142,7 @@ require('solarized').setup({
|
|||
neogit = true,
|
||||
neotree = true,
|
||||
notify = true,
|
||||
noice = true,
|
||||
semantic = true,
|
||||
syntax = true,
|
||||
telescope = true,
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
*solarized.nvim.txt* For NVIM v0.9.1 Last change: 2023 December 22
|
||||
*solarized.nvim.txt* For NVIM v0.9.1 Last change: 2023 December 24
|
||||
|
||||
==============================================================================
|
||||
Table of Contents *solarized.nvim-table-of-contents*
|
||||
|
|
@ -160,6 +160,7 @@ DEFAULT CONFIG *solarized.nvim-default-config*
|
|||
neogit = true,
|
||||
neotree = true,
|
||||
notify = true,
|
||||
noice = true,
|
||||
semantic = true,
|
||||
syntax = true,
|
||||
telescope = true,
|
||||
|
|
|
|||
|
|
@ -39,6 +39,7 @@ function M.default_config()
|
|||
neogit = true,
|
||||
neotree = true,
|
||||
notify = true,
|
||||
noice = true,
|
||||
semantic = true,
|
||||
syntax = true,
|
||||
telescope = true,
|
||||
9
lua/solarized/themes/default/noice.lua
Normal file
9
lua/solarized/themes/default/noice.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
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
|
||||
9
lua/solarized/themes/neo/noice.lua
Normal file
9
lua/solarized/themes/neo/noice.lua
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
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
|
||||
Loading…
Reference in a new issue