From 4d793edbdb56fc8d3c5bf3bfb57974bfb896975b Mon Sep 17 00:00:00 2001 From: mvllow Date: Sun, 6 Feb 2022 16:25:45 -0600 Subject: [PATCH] remove bufferline --- lua/rose-pine/bufferline/init.lua | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 lua/rose-pine/bufferline/init.lua diff --git a/lua/rose-pine/bufferline/init.lua b/lua/rose-pine/bufferline/init.lua deleted file mode 100644 index 4eb8a9a..0000000 --- a/lua/rose-pine/bufferline/init.lua +++ /dev/null @@ -1,24 +0,0 @@ -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, - }, -}