From ed84eb430ccff6e2ab7092a579e4eaadf11c28a1 Mon Sep 17 00:00:00 2001 From: Oliver Hartmann Date: Mon, 14 Sep 2026 11:27:01 +0000 Subject: [PATCH] use bufferline for tabs --- lua/plugins/bufferline.lua | 11 +++++++++++ lua/plugins/lualine.lua | 18 ------------------ 2 files changed, 11 insertions(+), 18 deletions(-) create mode 100644 lua/plugins/bufferline.lua diff --git a/lua/plugins/bufferline.lua b/lua/plugins/bufferline.lua new file mode 100644 index 0000000..633c211 --- /dev/null +++ b/lua/plugins/bufferline.lua @@ -0,0 +1,11 @@ +return { + 'akinsho/bufferline.nvim', + version = '*', + dependencies = 'nvim-tree/nvim-web-devicons', + opts = { + options = { + mode = 'tabs', + separator_style = 'slant', + }, + }, +} diff --git a/lua/plugins/lualine.lua b/lua/plugins/lualine.lua index b111a1a..e14ddc1 100644 --- a/lua/plugins/lualine.lua +++ b/lua/plugins/lualine.lua @@ -56,24 +56,6 @@ return { }, }, }, - tabline = { - lualine_a = {}, - lualine_b = {}, - lualine_c = { - { - 'tabs', - mode = 2, - tabs_color = { - -- Same values as the general color option can be used here. - active = { bg = 'orange', fg = 'black' }, - inactive = { bg = 'grey', fg = 'black' }, - }, - }, - }, - lualine_x = {}, - lualine_y = {}, - lualine_z = {}, - }, }) end, enabled = true,