diff --git a/README.md b/README.md index 85c32b6..ad6df3a 100644 --- a/README.md +++ b/README.md @@ -142,6 +142,7 @@ require('solarized').setup({ neogit = true, neotree = true, notify = true, + noice = true, semantic = true, syntax = true, telescope = true, diff --git a/doc/solarized.nvim.txt b/doc/solarized.nvim.txt index 330f076..209bcc5 100644 --- a/doc/solarized.nvim.txt +++ b/doc/solarized.nvim.txt @@ -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, diff --git a/lua/solarized/config/init.lua b/lua/solarized/config.lua similarity index 99% rename from lua/solarized/config/init.lua rename to lua/solarized/config.lua index 948542c..23d83ad 100644 --- a/lua/solarized/config/init.lua +++ b/lua/solarized/config.lua @@ -39,6 +39,7 @@ function M.default_config() neogit = true, neotree = true, notify = true, + noice = true, semantic = true, syntax = true, telescope = true, diff --git a/lua/solarized/themes/default/noice.lua b/lua/solarized/themes/default/noice.lua new file mode 100644 index 0000000..fc42470 --- /dev/null +++ b/lua/solarized/themes/default/noice.lua @@ -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 diff --git a/lua/solarized/themes/neo/noice.lua b/lua/solarized/themes/neo/noice.lua new file mode 100644 index 0000000..fc42470 --- /dev/null +++ b/lua/solarized/themes/neo/noice.lua @@ -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