mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
Remove the option, which is not longer implemented.
Add an example for the inherit highlight config.
This commit is contained in:
parent
49a64d9737
commit
2b14e06670
1 changed files with 5 additions and 5 deletions
10
readme.md
10
readme.md
|
|
@ -93,11 +93,6 @@ require('rose-pine').setup({
|
||||||
-- headings = 'subtle'
|
-- 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
|
-- Change specific vim highlight groups
|
||||||
-- https://github.com/rose-pine/neovim/wiki/Recipes
|
-- https://github.com/rose-pine/neovim/wiki/Recipes
|
||||||
highlight_groups = {
|
highlight_groups = {
|
||||||
|
|
@ -106,6 +101,11 @@ require('rose-pine').setup({
|
||||||
-- Blend colours against the "base" background
|
-- Blend colours against the "base" background
|
||||||
CursorLine = { bg = 'foam', blend = 10 },
|
CursorLine = { bg = 'foam', blend = 10 },
|
||||||
StatusLine = { fg = 'love', bg = 'love', 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 },
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue