馃 a tiny, customizable statusline for neovim
3
fork

Configure Feed

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

at c26b3acb0fce67daac123e4f2db5a7e78d7f3224 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