# minitab.nvim Fork of [`alvarosevilla95/luatab.nvim`](https://github.com/alvarosevilla95/luatab.nvim) ## Features * Just a lua rewrite of the tabline render function * No weird mixing buffers and tabs stuff * Size/position of tabs doesn't change ## Install Using [`lazy.nvim`](https://github.com/folke/lazy.nvim) ```lua return { url = 'https://git.tjkeller.xyz/minitab.nvim', config = true } ``` ## Configuration The plugin calls the `helpers.tabline` function to render the line. It uses the other functions defined in `helpers`, such as `cell,separator,devicon`. You can pass overrides for any of these functions in `setup`. Please see `lua/minitab/init.lua` for details. Example: ``` require('minitab').setup{ title = function() return '' end, modified = function() return '' end, windowCount = function() return '' end, separator = function() return '' end, } ```