🪴 a tiny, customizable statusline for neovim
3
fork

Configure Feed

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

feat: add `lylla.component` helper

robin d7b4560d a0ea51fb

+12
+12
lua/lylla/init.lua
··· 87 87 M.inithls() 88 88 end 89 89 90 + -- helpers 91 + 92 + ---@param fn fun(): string|any[] 93 + ---@param opts? { events: string[] } 94 + ---@return table 95 + function M.component(fn, opts) 96 + local t = {} 97 + t.fn = fn 98 + t.opts = opts 99 + return t 100 + end 101 + 90 102 return M