From 48b1ec21c5edfb99322f7dde18825f718eec219c Mon Sep 17 00:00:00 2001 From: Simon Ho Date: Mon, 10 Jun 2024 23:40:03 -0700 Subject: [PATCH] fix: bufferline buffer separators --- lua/kanagawa-paper/highlights/plugins.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lua/kanagawa-paper/highlights/plugins.lua b/lua/kanagawa-paper/highlights/plugins.lua index ae60e49..66ad102 100644 --- a/lua/kanagawa-paper/highlights/plugins.lua +++ b/lua/kanagawa-paper/highlights/plugins.lua @@ -254,7 +254,14 @@ function M.setup(colors, opts) BufferlineTabClose = { fg = palette.dragonRed }, BufferlineCloseButton = { fg = theme.ui.fg_dim, bg = not opts.transparent and theme.ui.bg_m3 or "NONE" }, BufferlineCloseButtonSelected = { fg = palette.dragonRed }, - BufferlineSeparator = { fg = theme.ui.bg }, + BufferlineSeparator = { + fg = not opts.transparent and theme.ui.bg_m3 or theme.ui.bg, + bg = not opts.transparent and theme.ui.bg_m3 or "NONE", + }, + BufferlineSeparatorSelected = { + fg = not opts.transparent and theme.ui.bg_m3 or theme.ui.bg, + bg = not opts.transparent and theme.ui.bg_m3 or "NONE", + }, -- Nvim-Navic NavicIconsFile = { link = "Directory" },