···250250 end),
251251},
252252```
253253+254254+### tabline
255255+256256+similarly, the tabline can be configured with the help of the `lylla.tabline` module:
257257+258258+```lua
259259+local H = require('lylla.tabline')
260260+261261+tabline = function()
262262+ return H.fortabs(function(tabidx, t_iscurrent)
263263+ return {
264264+ { string.format(" %d "), t_iscurrent and "TabLineSel" or "TabLine" },
265265+ }
266266+ end)
267267+end
268268+```