plugins.nix-develop.enable

Whether to enable nix-develop.nvim.

Type: boolean

Default: false

Example: true

Declared by:

plugins.nix-develop.package

Which package to use for the nix-develop.nvim plugin.

Type: package

Default: <derivation vimplugin-nix-develop.nvim-2023-07-23>

Declared by:

plugins.nix-develop.extraOptions

These attributes will be added to the table parameter for the setup function. Typically, it can override NixVim’s default settings.

Type: attribute set of anything

Default: { }

Declared by:

plugins.nix-develop.ignoredVariables

An attrs specifying the variables should be ignored.

Type: attribute set of boolean

Default: { }

Example:

{
  BASHOPTS = true;
  HOME = true;
  NIX_BUILD_TOP = true;
  SHELL = true;
  TMP = true;
}

Declared by:

plugins.nix-develop.separatedVariables

An attrs specifying the separator to use for particular environment variables.

Type: attribute set of string

Default: { }

Example:

{
  PATH = ":";
  XDG_DATA_DIRS = ":";
}

Declared by: