From 62ebd210624cbee590d79c3bd2873853535a2c5e Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Tue, 27 Aug 2024 22:09:15 +0200 Subject: [PATCH] nvim: colorscheme: add highlight for markdown rendering groups --- nvim/lua/user/plugins/core/colorscheme.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nvim/lua/user/plugins/core/colorscheme.lua b/nvim/lua/user/plugins/core/colorscheme.lua index b75a8e9..4b2b82c 100644 --- a/nvim/lua/user/plugins/core/colorscheme.lua +++ b/nvim/lua/user/plugins/core/colorscheme.lua @@ -82,6 +82,10 @@ local options = { NeoTreeModified = { fg = colors.yellow }, NeoTreeWinSeparator = { link = "WinSeparator" }, + -- Markdown rendering + RenderMarkdownCode = { bg = colors.crust }, + RenderMarkdownCodeInline = { fg = colors.rosewater, bg = colors.crust }, + -- Syntax PreProc = { link = "Include" }, Operator = { fg = colors.rosewater },