mirror of https://github.com/sgoudham/nvim.git
Support dim_inactive with existing integrations
parent
60c42920c9
commit
863500ba19
@ -1,29 +1,34 @@
|
|||||||
local M = {}
|
local M = {}
|
||||||
|
|
||||||
function M.get(cp)
|
function M.get(cp)
|
||||||
local transparent_background = require("catppuccin.config").options.transparent_background
|
local cnf = require("catppuccin.config").options
|
||||||
local bg_highlight = transparent_background and "NONE" or cp.base
|
local transparent_background = cnf.transparent_background
|
||||||
|
local dim_inactive = cnf.dim_inactive
|
||||||
|
local bg_highlight = (transparent_background and dim_inactive and cp.dim)
|
||||||
|
or (transparent_background and "NONE")
|
||||||
|
or (dim_inactive and cp.dim)
|
||||||
|
or cp.base
|
||||||
|
|
||||||
local inactive_bg = transparent_background and "NONE" or cp.mantle
|
local inactive_bg = transparent_background and "NONE" or cp.mantle
|
||||||
|
|
||||||
return {
|
return {
|
||||||
BufferLineFill = { bg = bg_highlight },
|
BufferLineFill = { bg = bg_highlight },
|
||||||
BufferLineBackcrust = { fg = cp.text, bg = inactive_bg }, -- others
|
BufferLineBackcrust = { fg = cp.text, bg = inactive_bg }, -- others
|
||||||
BufferLineBufferVisible = { fg = cp.surface1, bg = inactive_bg },
|
BufferLineBufferVisible = { fg = cp.surface1, bg = inactive_bg },
|
||||||
BufferLineBufferSelected = { fg = cp.text, bg = cp.base, style = "bold,italic" }, -- current
|
BufferLineBufferSelected = { fg = cp.text, bg = cp.base, style = "bold,italic" }, -- current
|
||||||
BufferLineTab = { fg = cp.surface1, bg = cp.base },
|
BufferLineTab = { fg = cp.surface1, bg = cp.base },
|
||||||
BufferLineTabSelected = { fg = cp.red, bg = cp.blue },
|
BufferLineTabSelected = { fg = cp.red, bg = cp.blue },
|
||||||
BufferLineTabClose = { fg = cp.red, bg = inactive_bg },
|
BufferLineTabClose = { fg = cp.red, bg = inactive_bg },
|
||||||
BufferLineIndicatorSelected = { fg = cp.peach, bg = cp.base },
|
BufferLineIndicatorSelected = { fg = cp.peach, bg = cp.base },
|
||||||
-- separators
|
-- separators
|
||||||
BufferLineSeparator = { fg = inactive_bg, bg = inactive_bg },
|
BufferLineSeparator = { fg = inactive_bg, bg = inactive_bg },
|
||||||
BufferLineSeparatorVisible = { fg = inactive_bg, bg = inactive_bg },
|
BufferLineSeparatorVisible = { fg = inactive_bg, bg = inactive_bg },
|
||||||
BufferLineSeparatorSelected = { fg = inactive_bg, bg = inactive_bg },
|
BufferLineSeparatorSelected = { fg = inactive_bg, bg = inactive_bg },
|
||||||
-- close buttons
|
-- close buttons
|
||||||
BufferLineCloseButton = { fg = cp.surface1, bg = inactive_bg },
|
BufferLineCloseButton = { fg = cp.surface1, bg = inactive_bg },
|
||||||
BufferLineCloseButtonVisible = { fg = cp.surface1, bg = inactive_bg },
|
BufferLineCloseButtonVisible = { fg = cp.surface1, bg = inactive_bg },
|
||||||
BufferLineCloseButtonSelected = { fg = cp.red, bg = cp.base },
|
BufferLineCloseButtonSelected = { fg = cp.red, bg = cp.base },
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
return M
|
return M
|
||||||
|
Loading…
Reference in New Issue