For reduce installing and loading time, some plugins are available but disabled or not loaded by default. You can enable them as required.
require('one').setup {
plugins = function(load, config)
-- Load the builtin plugins
return {
load('profiling'),
load('funny', { disable = true }), -- You can pass options to override the default options of plugin.
load('noice'),
}
end
}