2022-02-04 19:22:13 -06:00
|
|
|
local palette = require('rose-pine.palette')
|
|
|
|
|
local colors = palette[vim.g.rose_pine_variant or 'main']
|
2022-01-21 21:06:59 -06:00
|
|
|
|
|
|
|
|
-- TODO: Someone who uses bufferline.nvim is free to PR with this addition
|
|
|
|
|
-- `:h bufferline-highlights`
|
|
|
|
|
--
|
|
|
|
|
-- The intended use would be (or any better solution):
|
|
|
|
|
--
|
|
|
|
|
-- ```
|
|
|
|
|
-- local highlights = require('rose-pine.bufferline')
|
|
|
|
|
-- require('bufferline').setup({
|
|
|
|
|
-- highlights = highlights
|
|
|
|
|
-- })
|
|
|
|
|
-- ```
|
|
|
|
|
return {
|
|
|
|
|
fill = {
|
2022-02-04 19:22:13 -06:00
|
|
|
guifg = colors.text,
|
|
|
|
|
guibg = colors.base,
|
2022-01-21 21:06:59 -06:00
|
|
|
},
|
|
|
|
|
background = {
|
2022-02-04 19:22:13 -06:00
|
|
|
guifg = colors.text,
|
|
|
|
|
guibg = colors.base,
|
2022-01-21 21:06:59 -06:00
|
|
|
},
|
|
|
|
|
}
|