nixos-configs/common/home/neovim/langs/python.nix
matt1432 8deffb3adb
All checks were successful
Discord / discord commits (push) Has been skipped
feat(nvim): coc -> lspconfig
2024-05-08 23:04:16 -04:00

23 lines
313 B
Nix

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