From 39220a80830d3d0ad86e2317188ff539b015f58d Mon Sep 17 00:00:00 2001 From: A-Lamia Date: Tue, 11 Jul 2023 08:05:55 +1000 Subject: [PATCH] fix(indent-blankline): correct file name so that it loads --- lua/astrotheme/groups/plugins/indent-blankline.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lua/astrotheme/groups/plugins/indent-blankline.lua diff --git a/lua/astrotheme/groups/plugins/indent-blankline.lua b/lua/astrotheme/groups/plugins/indent-blankline.lua new file mode 100644 index 0000000..bba9aef --- /dev/null +++ b/lua/astrotheme/groups/plugins/indent-blankline.lua @@ -0,0 +1,11 @@ +local function callback() + return { + IndentBlanklineChar = { fg = C.ui.none_text }, + IndentBlanklineContextStart = { fg = C.ui.text_active, underline = true }, + IndentBlanklineContextChar = { fg = C.ui.text }, + IndentBlanklineSpaceCharBlankline = { fg = C.ui.none_text }, + IndentBlanklineSpaceshar = { fg = C.ui.none_text }, + } +end + +return callback