new tab plugin

This commit is contained in:
2023-10-02 10:54:29 +02:00
parent 810c87381a
commit 2e74a93297
3 changed files with 18 additions and 13 deletions
+14
View File
@@ -0,0 +1,14 @@
vim.opt.termguicolors = true
local bufferline = require('bufferline')
bufferline.setup({
options = {
mode = "buffers", -- set to "tabs" to only show tabpages instead
style_preset = bufferline.style_preset.minimal, -- or bufferline.style_preset.minimal,
separator_style = { "", "" }, --"thin", --| "slope" | "thick" | "thin" | { 'any', 'any' },
indicator = {
icon = '', -- this should be omitted if indicator style is not 'icon'
style = 'none',
},
}
})