🪴 a tiny, customizable statusline for neovim
3
fork

Configure Feed

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

fix: prevent repeated initizalization

authored by

robin and committed by
robin
75f9916d 27ab3483

+8
+8
lua/lylla/init.lua
··· 51 51 end) 52 52 end 53 53 54 + M.initialized = false 55 + 54 56 function M.init() 57 + if M.initialized then 58 + return 59 + end 60 + 61 + M.initialized = true 62 + 55 63 vim.api.nvim_create_autocmd({ "UIEnter", "WinNew", "WinEnter" }, { 56 64 group = vim.api.nvim_create_augroup("lylla:win", { clear = true }), 57 65 callback = function()