plugins

Combined plugin spec passed to lazy.nvim startup function. You should pass your plugin specs generated in modules to this configuration value (see usage examples).

Type: list of (attribute set)

Default: [ ]

Declared by:

rtp

A list of paths to add to the runtimepath. The paths must be placed inside a parent folder named in accordance to where they should be in the runtimepath.

For instance, if you wish to have a lua module module.lua to be available in the rtp, you must place it inside a folder named lua, then add this folder to opt.rtp.

See :h rtp for more information.

Type: list of path

Default: [ ]

Declared by:

preHooks

Lua statements to be executed before lazy startup, newline separated.

Type: strings concatenated with “\n”

Default: ""

Example:

''
  print('hello world')
''

Declared by:

postHooks

Lua statements to be executed after lazy startup, newline separated.

Type: strings concatenated with “\n”

Default: ""

Example:

''
  print('hello world')
''

Declared by:

extraPackages

Extra packages to be included in the wrapped program’s $PATH.

Type: list of package

Default: [ ]

Example:

[ pkgs.hello ]

Declared by: