BufferTabs.nvim Save

A simple, fancy tabline for Neovim.

Project README

BufferTabs - Simple and Fancy tabline for NeoVim


Colorscheme: RoseBones; Font: JetBrainsMono NF

Installation

Using vim-plug
Plug 'tomiis4/BufferTabs.nvim'
Using packer
use 'tomiis4/BufferTabs.nvim'
Using lazy
{
    'tomiis4/BufferTabs.nvim',
    dependencies = {
        'nvim-tree/nvim-web-devicons', -- optional
    },
    lazy = false,
    config = function()
        require('buffertabs').setup({
            -- config
        })
    end
},

Toggle

-- 1) lua code
require('buffertabs').toggle()

-- 2) command
:BufferTabsToggle

Setup

require('buffertabs').setup()
Default configuration
require('buffertabs').setup({
    ---@type 'none'|'single'|'double'|'rounded'|'solid'|'shadow'|table
    border = 'rounded',

    ---@type integer
    padding = 1,

    ---@type boolean
    icons = true,

    ---@type string
    modified = " ",

    ---@type string use hl Group or hex color
    hl_group = 'Keyword',

    ---@type string use hl Group or hex color
    hl_group_inactive = 'Comment',

    ---@type boolean
    show_all = false,

    ---@type 'row'|'column'
    display = 'row',

    ---@type 'left'|'right'|'center'
    horizontal = 'center',

    ---@type 'top'|'bottom'|'center'
    vertical = 'top',

    ---@type number in ms (recommend 2000)
    timeout = 0
})

File order

|   LICENSE
|   README.md
|
+---lua
|   \---buffertabs
|           init.lua
|           utils.lua
|
\---plugin
        buffertabs.lua

Contributors

tomiis4
tomiis4
founder

futsuuu
futsuuu

Open Source Agenda is not affiliated with "BufferTabs.nvim" Project. README Source: tomiis4/BufferTabs.nvim
Stars
60
Open Issues
2
Last Commit
5 months ago
License

Open Source Agenda Badge

Open Source Agenda Rating