nixos-configs/common/home/neovim/langs/python.nix

24 lines
313 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}: let
inherit (config.vars) neovimIde;
inherit (pkgs) vimPlugins;
in
lib.mkIf neovimIde {
programs = {
neovim = {
withPython3 = true;
extraPython3Packages = ps: [
ps.pylint
];
plugins = [
];
};
};
}