馃 a tiny, customizable statusline for neovim
3
fork

Configure Feed

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

at 9dad07841375153f1c66b8a85d70a99c30803cbb 16 lines 332 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