aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorSquibid <me@zacharyscheiman.com>2024-03-31 17:00:29 -0400
committerSquibid <me@zacharyscheiman.com>2024-03-31 17:00:29 -0400
commitb27493dc8f9bd0de71467627d4875545d3f63557 (patch)
tree4625eefbed48062abc0a9139aca66a5fcecc36dd /README.md
downloadtar-b27493dc8f9bd0de71467627d4875545d3f63557.tar.gz
tar-b27493dc8f9bd0de71467627d4875545d3f63557.tar.bz2
tar-b27493dc8f9bd0de71467627d4875545d3f63557.zip
inital commitHEADmaster
Diffstat (limited to '')
-rw-r--r--README.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..788d870
--- /dev/null
+++ b/README.md
@@ -0,0 +1,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
+}
+```