馃 a tiny, customizable statusline for neovim
3
fork

Configure Feed

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

at d7b4560ded77c6b2137ae467d9d124a2e096b3bd 16 lines 248 B view raw
1R = function(m, ...) 2 require("plenary.reload").reload_module(m, ...) 3 return require(m) 4end 5 6vim.opt.rtp:prepend(".") 7 8-- 9 10vim.api.nvim_create_autocmd("UIEnter", { 11 callback = function() 12 pcall(function() 13 R("lylla") 14 end) 15 end, 16})