🪴 a tiny, customizable statusline for neovim
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

doc: tabline section

robin 649d37d6 aa4d3bcd

+16
+16
README.md
··· 250 250 end), 251 251 }, 252 252 ``` 253 + 254 + ### tabline 255 + 256 + similarly, the tabline can be configured with the help of the `lylla.tabline` module: 257 + 258 + ```lua 259 + local H = require('lylla.tabline') 260 + 261 + tabline = function() 262 + return H.fortabs(function(tabidx, t_iscurrent) 263 + return { 264 + { string.format(" %d "), t_iscurrent and "TabLineSel" or "TabLine" }, 265 + } 266 + end) 267 + end 268 + ```