neovim-rose-pine/lua/rose-pine/bufferline/init.lua
mvllow 59a88444de BREAKING!: rewrite config api and update styles
- move config to lua
- use rose for search match
- fix background flicker when automatically switching to dawn
- remove unneeded highlights (please report regressions)
  - remove deprecated `LspDiagnostics*`
  - remove `LspReference*`
- improve overall consistency between elements
  - non-treesitter updates to match treesitter styles
  - update popup menu scrollbar and selection
  - update telescope selection
  - match cursorcolumn to cursorline
2022-02-10 10:10:49 -06:00

24 lines
591 B
Lua

local palette = require('rose-pine.palette')
local colors = palette[vim.g.rose_pine_variant or 'main']
-- 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 = {
guifg = colors.text,
guibg = colors.base,
},
background = {
guifg = colors.text,
guibg = colors.base,
},
}