performance.combinePlugins.enable

Whether to enable EXPERIMENTAL option to combine all plugins into a single plugin pack. It can significantly reduce startup time, but all your plugins must have unique filenames and doc tags. Any collision will result in a build failure. To avoid collisions you can add your plugin to the standalonePlugins option. Only standard neovim runtime directories are linked to the combined plugin. If some of your plugins contain important files outside of standard directories, add these paths to pathsToLink option.

Type: boolean

Default: false

Example: true

Declared by:

List of paths to link into a combined plugin pack.

Type: list of string

Default: [ ]

Example:

[
  "/data"
]

Declared by:

performance.combinePlugins.standalonePlugins

List of plugins (names or packages) to exclude from plugin pack.

Type: list of (string or package)

Default: [ ]

Example:

[
  "nvim-treesitter"
]

Declared by: