🪴 a tiny, customizable statusline for neovim
3
fork

Configure Feed

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

doc: sections & hl inheritance

robin b0b4a84a 25c01de8

+17
+17
README.md
··· 207 207 } 208 208 ``` 209 209 210 + ### sections 211 + 212 + modules can handle different highlights for a section. ~ highlights inside will inherit the background color. 213 + 214 + ```lua 215 + { 216 + lylla.component(function() 217 + return { 218 + { section = "CursorLine" }, -- highlights after this will inherit the CursorLine bg 219 + { "meow", "Title" }, 220 + { " :3", "Constant" }, 221 + { section = false }, -- denotes the end of a section 222 + } 223 + end) 224 + } 225 + ``` 226 + 210 227 ### lsp information 211 228 212 229 lylla components has a builtin helper for getting the current lsp client.