neovim: fix python package examples
This commit is contained in:
parent
8961d516ce
commit
892de0e10b
|
@ -59,7 +59,7 @@ in
|
||||||
extraPythonPackages = mkOption {
|
extraPythonPackages = mkOption {
|
||||||
type = with types; either extraPythonPackageType (listOf package);
|
type = with types; either extraPythonPackageType (listOf package);
|
||||||
default = (_: []);
|
default = (_: []);
|
||||||
example = literalExample "(ps: [ pandas jedi ])";
|
example = literalExample "(ps: with ps; [ pandas jedi ])";
|
||||||
description = ''
|
description = ''
|
||||||
A function in python.withPackages format, which returns a
|
A function in python.withPackages format, which returns a
|
||||||
list of Python 2 packages required for your plugins to work.
|
list of Python 2 packages required for your plugins to work.
|
||||||
|
@ -86,7 +86,7 @@ in
|
||||||
extraPython3Packages = mkOption {
|
extraPython3Packages = mkOption {
|
||||||
type = with types; either extraPython3PackageType (listOf package);
|
type = with types; either extraPython3PackageType (listOf package);
|
||||||
default = (_: []);
|
default = (_: []);
|
||||||
example = literalExample "(ps: [ python-language-server ])";
|
example = literalExample "(ps: with ps; [ python-language-server ])";
|
||||||
description = ''
|
description = ''
|
||||||
A function in python.withPackages format, which returns a
|
A function in python.withPackages format, which returns a
|
||||||
list of Python 3 packages required for your plugins to work.
|
list of Python 3 packages required for your plugins to work.
|
||||||
|
|
Loading…
Reference in a new issue