mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
docs: add inherit option (#175)
* Remove the option, which is not longer implemented * Add an example for the inherit highlight config
This commit is contained in:
parent
eb4c5591c7
commit
70c641a0b7
1 changed files with 5 additions and 4 deletions
|
|
@ -93,10 +93,6 @@ require('rose-pine').setup({
|
|||
-- headings = 'subtle'
|
||||
},
|
||||
|
||||
-- Whether or not highlight_groups optios should change only only update
|
||||
-- the settings they touch or should 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 = {
|
||||
|
|
@ -105,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 the 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