Skip to content

Commit

Permalink
barbar: fix transparent bg for selected tab with nvim nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
ttytm committed Dec 7, 2024
1 parent e6e8f46 commit 9c3e3db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lua/nxvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ local modules = {
{ "tenxsoydev/karen-yank.nvim", event = "VeryLazy", config = true },

-- Buffer- & Window Management -----------------------------------------------
{ "akinsho/bufferline.nvim", config = "plugins.bufferline" },
-- { "romgrk/barbar.nvim", event = "VeryLazy", config = "plugins.barbar" },
-- { "akinsho/bufferline.nvim", config = "plugins.bufferline" },
{ "romgrk/barbar.nvim", event = "VeryLazy", config = "plugins.barbar" },
{ "Bekaboo/dropbar.nvim", event = "VeryLazy", config = "plugins.dropbar" },
{ "kwkarlwang/bufresize.nvim", event = "VeryLazy", config = true }, -- handle split window sizes on client resize
{ "gorbit99/codewindow.nvim", event = "VeryLazy", config = "plugins.codewindow" },
Expand Down
2 changes: 1 addition & 1 deletion lua/nxvim/plugins/barbar.lua
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ nx.hl({
-- TODO: Dyanmic theme colors instead of hex
{ "BufferAlternate", fg = "#9dacb9", italic = true },

{ "BufferVisible", fg = "#9dacb9", bg = "none" },
{ { "BufferVisible", "TabLineFill" }, fg = "#9dacb9", bg = "none" },
{ "BufferVisibleSign", fg = "TabLine:bg", bg = "BufferVisible:bg" },

{ "BufferInactive", fg = "Comment:fg", bg = "TabLine:bg" },
Expand Down

0 comments on commit 9c3e3db

Please sign in to comment.