nix-develop

URL: https://github.com/figsoda/nix-develop.nvim/

Maintainers: Heitor Augusto

plugins.nix-develop.enable

Whether to enable nix-develop.nvim.

Type: boolean

Default: false

Example: true

Declared by:

plugins.nix-develop.package

The nix-develop.nvim package to use.

Type: package

Default: pkgs.vimPlugins.nix-develop-nvim

Declared by:

plugins.nix-develop.ignoredVariables

Variables that should be ignored when generating the environment.

Type: null or (attribute set of (boolean or raw lua code))

Default: null

Plugin default:

{
  BASHOPTS = true;
  HOME = true;
  NIX_BUILD_TOP = true;
  NIX_ENFORCE_PURITY = true;
  NIX_LOG_FD = true;
  NIX_REMOTE = true;
  PPID = true;
  SHELL = true;
  SHELLOPTS = true;
  SSL_CERT_FILE = true;
  TEMP = true;
  TEMPDIR = true;
  TERM = true;
  TMP = true;
  TMPDIR = true;
  TZ = true;
  UID = true;
}

Declared by:

plugins.nix-develop.separatedVariables

Specified separators to use for particular environment variables.

Type: null or (attribute set of (string or raw lua code))

Default: null

Plugin default:

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

Declared by: