mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
parent
a455e5f57a
commit
ceb8d53bc3
1 changed files with 23 additions and 0 deletions
23
lua/rose-pine/bufferline/init.lua
Normal file
23
lua/rose-pine/bufferline/init.lua
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
local p = require('rose-pine.palette')
|
||||
|
||||
-- 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 = p.text,
|
||||
guibg = p.base,
|
||||
},
|
||||
background = {
|
||||
guifg = p.text,
|
||||
guibg = p.base,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue