Skip to content

Commit

Permalink
feat: hl for noice-progress
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmx03 committed Dec 24, 2023
1 parent 3338aa4 commit 55506b1
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ require('solarized').setup({
neogit = true,
neotree = true,
notify = true,
noice = true,
semantic = true,
syntax = true,
telescope = true,
Expand Down
3 changes: 2 additions & 1 deletion doc/solarized.nvim.txt
Original file line number Diff line number Diff line change
@@ -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*
Expand Down Expand Up @@ -160,6 +160,7 @@ DEFAULT CONFIG *solarized.nvim-default-config*
neogit = true,
neotree = true,
notify = true,
noice = true,
semantic = true,
syntax = true,
telescope = true,
Expand Down
1 change: 1 addition & 0 deletions lua/solarized/config/init.lua → lua/solarized/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ function M.default_config()
neogit = true,
neotree = true,
notify = true,
noice = true,
semantic = true,
syntax = true,
telescope = true,
Expand Down
9 changes: 9 additions & 0 deletions lua/solarized/themes/default/noice.lua
Original file line number Diff line number Diff line change
@@ -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 changes: 9 additions & 0 deletions lua/solarized/themes/neo/noice.lua
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 55506b1

Please sign in to comment.