From f3b7ccdc15b86ce19c91be1fb7d45c371e9f8d9d Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Sun, 21 Jan 2024 23:14:36 +0000 Subject: [PATCH] feat: make folds look better --- lua/kagayaki/kagayaki.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/kagayaki/kagayaki.lua b/lua/kagayaki/kagayaki.lua index 797c218..8a6fb93 100644 --- a/lua/kagayaki/kagayaki.lua +++ b/lua/kagayaki/kagayaki.lua @@ -36,7 +36,6 @@ local theme = lush(function(injected_functions) -- TermCursorNC { }, -- Cursor in an unfocused terminal ErrorMsg { fg = hsl("#f06969") }, -- Error messages on the command line -- VertSplit { }, -- Column separating vertically split windows - -- Folded { }, -- Line used for closed folds -- FoldColumn { }, -- 'foldcolumn' SignColumn { }, -- Column where |signs| are displayed -- IncSearch { }, -- 'incsearch' highlighting; also used for the text replaced with ":s///c" @@ -52,6 +51,7 @@ local theme = lush(function(injected_functions) -- MsgSeparator { }, -- Separator for scrolled messages, `msgsep` flag of 'display' -- MoreMsg { }, -- |more-prompt| Normal { bg = hsl("#151517"), fg = hsl("#ece5ea") }, -- Normal text + Folded { }, -- Line used for closed folds LineNr { fg = hsl("#454449") }, -- Line number for ":number" and ":#" commands, and when 'number' or 'relativenumber' option is set. NonText { fg = Normal.bg.lighten(20) }, -- '@' at the end of the window, characters from 'showbreak' and other characters that do not really exist in the text (e.g., ">" displayed when a double-wide character doesn't fit at the end of the line). See also |hl-EndOfBuffer|. CursorLine { bg = Normal.bg.lighten(5) }, -- Screen-line at the cursor, when 'cursorline' is set. Low-priority if foreground (ctermfg OR guifg) is not set.