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.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: