From 95954bea72d914e609032c2943ee380a4d836e8d Mon Sep 17 00:00:00 2001 From: danymat Date: Tue, 9 Nov 2021 11:39:35 +0100 Subject: [PATCH] feat: add heading highlights to Neorg --- lua/rose-pine/theme.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/lua/rose-pine/theme.lua b/lua/rose-pine/theme.lua index a912123..d6307f1 100644 --- a/lua/rose-pine/theme.lua +++ b/lua/rose-pine/theme.lua @@ -417,6 +417,24 @@ theme.plugins = { NeogitDiffContextHighlight = { bg = p.highlight }, NeogitHunkHeader = { bg = p.highlight }, NeogitHunkHeaderHighlight = { bg = p.highlight }, + + -- Neorg + -- https://github.com/nvim-neorg/neorg + NeorgHeading1Prefix = { fg = p.iris, style = 'bold' }, + NeorgHeading2Prefix = { fg = p.foam, style = 'bold' }, + NeorgHeading3Prefix = { fg = p.rose, style = 'bold' }, + NeorgHeading4Prefix = { fg = p.gold, style = 'bold' }, + NeorgHeading5Prefix = { fg = p.pine, style = 'bold' }, + NeorgHeading6Prefix = { fg = p.foam, style = 'bold' }, + + NeorgHeading1Title = { fg = p.iris, style = 'bold' }, + NeorgHeading2Title = { fg = p.foam, style = 'bold' }, + NeorgHeading3Title = { fg = p.rose, style = 'bold' }, + NeorgHeading4Title = { fg = p.gold, style = 'bold' }, + NeorgHeading5Title = { fg = p.pine, style = 'bold' }, + NeorgHeading6Title = { fg = p.foam, style = 'bold' }, + + NeorgMarkerTitle = { fg = p.text, style = 'bold' }, } return theme