Skip to content

Latest commit

 

History

History
37 lines (32 loc) · 1.21 KB

available-but-not-loaded-plugins.md

File metadata and controls

37 lines (32 loc) · 1.21 KB

Available but not loaded plugin list

For reduce installing and loading time, some plugins are available but disabled or not loaded by default. You can enable them as required.

How to enable these plugins

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
}

Not-loaded Plugin List