···207207}
208208```
209209210210+### sections
211211+212212+modules can handle different highlights for a section. ~ highlights inside will inherit the background color.
213213+214214+```lua
215215+{
216216+ lylla.component(function()
217217+ return {
218218+ { section = "CursorLine" }, -- highlights after this will inherit the CursorLine bg
219219+ { "meow", "Title" },
220220+ { " :3", "Constant" },
221221+ { section = false }, -- denotes the end of a section
222222+ }
223223+ end)
224224+}
225225+```
226226+210227### lsp information
211228212229lylla components has a builtin helper for getting the current lsp client.