From f35b13d669867209427449840ff0930a732591dc Mon Sep 17 00:00:00 2001 From: Squibid Date: Fri, 24 Nov 2023 21:38:31 -0500 Subject: more stuff too lazy to seperate --- after/plugin/tabline.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 after/plugin/tabline.lua (limited to 'after/plugin/tabline.lua') diff --git a/after/plugin/tabline.lua b/after/plugin/tabline.lua new file mode 100644 index 0000000..4b9dcfa --- /dev/null +++ b/after/plugin/tabline.lua @@ -0,0 +1,11 @@ +local status_ok, tabline = pcall(require, "tar") +if not status_ok then + return +end + +tabline.setup { + layout = { + { type = 'taglist' }, + }, + seperator = '|', +} -- cgit v1.2.1