From 895523ead858d6058f187a4fe129d3d0bb38c151 Mon Sep 17 00:00:00 2001 From: siduck Date: Tue, 15 Nov 2022 22:09:19 +0530 Subject: [PATCH] add hl groups for nvcheatsheet --- lua/base46/integrations/nvcheatsheet.lua | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 lua/base46/integrations/nvcheatsheet.lua diff --git a/lua/base46/integrations/nvcheatsheet.lua b/lua/base46/integrations/nvcheatsheet.lua new file mode 100644 index 0000000..958b320 --- /dev/null +++ b/lua/base46/integrations/nvcheatsheet.lua @@ -0,0 +1,19 @@ +local colors = require("base46").get_theme_tb "base_30" + +return { + + NvChHeading = { + fg = colors.black, + bg = colors.blue, + bold = true, + }, + + NvChSection = { + bg = colors.black2, + }, + + NvChAsciiHeader = { + fg = colors.blue, + bg = colors.black2, + }, +}