mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
fix reverse italic logic
This commit is contained in:
parent
9f4356a0da
commit
411c240741
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ function M.get(config)
|
|||
local theme = {}
|
||||
local groups = config.groups or {}
|
||||
local styles = {
|
||||
italic = (config.disable_italics and 'italic') or 'NONE',
|
||||
italic = (config.disable_italics and 'NONE') or 'italic',
|
||||
vert_split = (config.bold_vert_split and p.surface) or p.none,
|
||||
background = (config.disable_background and p.none) or p.base,
|
||||
float_background = (config.disable_float_background and p.none) or p.surface,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue