🪴 a tiny, customizable statusline for neovim
3
fork

Configure Feed

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

fix(plugin): defer `inithls()` till UIEnter

robin 1a5b2e68 f9aa9625

+1 -2
+1 -2
plugin/lylla.lua
··· 70 70 require("lylla.tabline").setup() 71 71 end 72 72 73 - vim.api.nvim_create_autocmd("ColorScheme", { 73 + vim.api.nvim_create_autocmd({ "UIEnter", "ColorScheme" }, { 74 74 group = vim.api.nvim_create_augroup("@lylla.hls", { clear = true }), 75 75 callback = function() 76 76 inithls() 77 77 end, 78 78 }) 79 - inithls() 80 79 end 81 80 82 81 if vim.v.vim_did_enter > 0 then