Skip to content

Commit

Permalink
fix: bufferline buffer separators
Browse files Browse the repository at this point in the history
  • Loading branch information
sho-87 committed Jun 11, 2024
1 parent 52697bc commit 48b1ec2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lua/kanagawa-paper/highlights/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down

0 comments on commit 48b1ec2

Please sign in to comment.