馃 a tiny, customizable statusline for neovim
3
fork

Configure Feed

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

at 53a290b906d1ebe1630cfa263a4f644e88689c9a 16 lines 333 B view raw
1if vim.g.loaded_statusline then 2 return 3end 4 5vim.g.loaded_statusline = true 6 7if vim.v.vim_did_enter > 0 then 8 require("lylla").init() 9else 10 vim.api.nvim_create_autocmd("VimEnter", { 11 group = vim.api.nvim_create_augroup("@lylla.init", { clear = true }), 12 callback = function() 13 require("lylla").init() 14 end, 15 }) 16end