From 73c118078d98d867ff09f200402abd8f9c7f050d Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Wed, 22 Nov 2023 13:32:25 -0600 Subject: [PATCH] feat(nvim): improve org block and directive highlights --- dots/.config/nvim/lua/plugins/configs/kanagawa.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dots/.config/nvim/lua/plugins/configs/kanagawa.lua b/dots/.config/nvim/lua/plugins/configs/kanagawa.lua index 6ee296bd..f9ced633 100644 --- a/dots/.config/nvim/lua/plugins/configs/kanagawa.lua +++ b/dots/.config/nvim/lua/plugins/configs/kanagawa.lua @@ -204,7 +204,9 @@ return { NotificationError = { link = "NvimNotifyError" }, org_table_sep = { fg = colors.springBlue, bg = colors.winterBlue }, org_table_header = { fg = colors.crystalBlue, bg = colors.winterBlue }, - org_table = { bg = colors.winterBlue } + org_table = { bg = colors.winterBlue }, + ["@OrgTSBlock.org"] = { fg = colors.fujiGray, bold = true, italic = true }, + ["@OrgTSDirective.org"] = { link = "@OrgTSBlock.org" } } return overrides