tomiis4/BufferTabs.nvim

github github
bars-and-linestabline
stars 60
issues 2
subscribers 3
forks 3
CREATED

2023-07-10

UPDATED

6 months ago


Installation

Plug 'tomiis4/BufferTabs.nvim'
use 'tomiis4/BufferTabs.nvim'
{
    '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()
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