aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: e3376b9729f6e6100f3c230c9b0bef613e77557d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# luatab.nvim

<p align="center">
  <img src="https://github.com/alvarosevilla95/luatab.nvim/blob/master/pics/tabline.png" />
</p>

## Features
* Just a lua rewrite of the tabline render function
* No weird mixing buffers and tabs stuff

## Install
Using packer.nvim:
```lua
use { 'alvarosevilla95/luatab.nvim', requires='nvim-tree/nvim-web-devicons' }
```

Using [`lazy.nvim`](https://github.com/folke/lazy.nvim)
```lua
{ 'alvarosevilla95/luatab.nvim', dependencies = { 'nvim-tree/nvim-web-devicons' } }
```

## Usage
Add this to your init.lua:
```lua
require('luatab').setup{}
```

## 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/luatab/init.lua` for details.

Example:
```
require('luatab').setup{
    title = function() return '' end,
    modified = function() return '' end,
    windowCount = function() return '' end,
    devicon = function() return '' end,
    separator = function() return '' end,
}
```