From e4b3d672043fa9b16d349f08e1c8d650f75d39c0 Mon Sep 17 00:00:00 2001 From: Webhooked Date: Sat, 31 May 2025 14:46:06 +0200 Subject: [PATCH] Update selected line colors in Snacks picker --- lua/kanso/highlights/plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/kanso/highlights/plugins.lua b/lua/kanso/highlights/plugins.lua index 4a94ab3..317858f 100644 --- a/lua/kanso/highlights/plugins.lua +++ b/lua/kanso/highlights/plugins.lua @@ -505,7 +505,7 @@ function M.setup(colors, config) SnacksIndent = { fg = theme.ui.indent_line, nocombine = true }, SnacksIndentChunk = { fg = theme.ui.active_indent_line, nocombine = true }, SnacksIndentScope = { fg = theme.ui.active_indent_line, nocombine = true }, - SnacksPickerListCursorLine = { fg = theme.ui.bg, bg = theme.ui.fg, bold = true }, + SnacksPickerListCursorLine = { fg = theme.ui.fg, bg = theme.ui.bg_p2 }, SnacksPickerInputBorder = { fg = theme.ui.none, bg = theme.ui.none }, SnacksPickerInputTitle = { fg = theme.ui.fg, bg = config.transparent and theme.ui.none or theme.ui.bg }, SnacksPickerBoxTitle = { fg = theme.ui.fg, bg = config.transparent and theme.ui.none or theme.ui.bg },