diff --git a/readme.md b/readme.md index d39de69..19479cc 100644 --- a/readme.md +++ b/readme.md @@ -93,11 +93,6 @@ require('rose-pine').setup({ -- headings = 'subtle' }, - -- Whether highlight_groups options should: - -- -- true: change and update only the settings they touch - -- -- false: reset the entire highlight_group. - respect_default_highlight_groups = true, - -- Change specific vim highlight groups -- https://github.com/rose-pine/neovim/wiki/Recipes highlight_groups = { @@ -106,6 +101,11 @@ require('rose-pine').setup({ -- Blend colours against the "base" background CursorLine = { bg = 'foam', blend = 10 }, StatusLine = { fg = 'love', bg = 'love', blend = 10 }, + + -- By default each group adds to its existing config. + -- If you only want to set what is written in this config exactly, + -- you can set the inherit option: + Search = { bg = 'gold', inherit = false }, } })