summaryrefslogtreecommitdiffstats
path: root/after/plugin/tabline.lua
blob: 4b9dcfa57c5fccdd372334d0859db750c4e8945d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
local status_ok, tabline = pcall(require, "tar")
if not status_ok then
	return
end

tabline.setup {
  layout = {
    { type = 'taglist' },
  },
  seperator = '|',
}