🪴 a tiny, customizable statusline for neovim
3
fork

Configure Feed

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

fix(utils): use `link = false` in `nvim_get_hl`

robin 53a290b9 d4746272

+1 -1
+1 -1
lua/lylla/utils.lua
··· 104 104 function utils.reverse_hl(hl) 105 105 if type(hl) == "string" then 106 106 ---@diagnostic disable-next-line: cast-local-type 107 - hl = vim.api.nvim_get_hl(0, { name = hl }) 107 + hl = vim.api.nvim_get_hl(0, { name = hl, link = false }) 108 108 end 109 109 110 110 if vim.tbl_isempty(hl) or (not hl.fg and not hl.bg and not hl.link) then