🪴 a tiny, customizable statusline for neovim
3
fork

Configure Feed

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

feat: use builtin highlight groups for default mode hls

robin a0ea51fb 01b44432

+4 -4
+4 -4
lua/lylla/init.lua
··· 16 16 17 17 ---@type table<'normal'|'visual'|'command'|'insert', vim.api.keyset.highlight> 18 18 local default_hls = { 19 - normal = { link = "MiniIconsAzure" }, 20 - visual = { link = "MiniIconsPurple" }, 21 - command = { link = "MiniIconsOrange" }, 22 - insert = { link = "MiniIconsGrey" }, 19 + normal = { link = "@property" }, 20 + visual = { link = "@constant" }, 21 + command = { link = "@function" }, 22 + insert = { link = "@variable" }, 23 23 } 24 24 25 25 ---@param cfg? lylla.config