17 lines
444 B
Lua
Raw Normal View History

return {
'rose-pine/neovim',
config = function()
require('rose-pine').setup {
2025-03-18 13:03:54 +01:00
disable_italics = true,
highlight_groups = {
Comment = { italic = true },
-- htmlBold = { bold = true },
-- ['@markup.strong'] = { bold = true },
['@markup.italic'] = { italic = true },
-- ['neorg.markup.bold.norg'] = { bold = true },
-- ['@text.strong'] = { bold = true },
},
}
end,
}