mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
fix: Comment respects italics settings
This commit is contained in:
parent
11f271a33a
commit
03d3ca88c5
1 changed files with 4 additions and 1 deletions
|
|
@ -6,7 +6,10 @@ theme.loadSyntax = function()
|
|||
local syntax = {
|
||||
Boolean = { fg = p.gold },
|
||||
Character = { fg = p.gold },
|
||||
Comment = { fg = p.subtle, style = 'italic' },
|
||||
Comment = {
|
||||
fg = p.subtle,
|
||||
style = vim.g.rose_pine_enable_italics and 'italic',
|
||||
},
|
||||
Conditional = { fg = p.pine },
|
||||
Constant = { fg = p.gold },
|
||||
Debug = { fg = p.rose },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue