blob: 788d8703fce8584ef3fead02089aff667fdd82e2 (
plain) (
blame)
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
|
# TAR Tab bAR
## Usage
```lua
require('tar').setup {}
```
## Configuration
default:
```lua
{
seperator = "|",
noname = "[No Name]",
closeicon = "[x]"
}
```
options:
```lua
{
seperator = function() end or "String", -- separator to go in-between titles
title = function() end, -- title to show
sign = function() end, -- text to show to the right of the title
noname = "String", -- title shown when no name is found
closeicon = "String" -- icon shown on the very right
}
```
|