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

27 lines
432 B
Nix
Raw Normal View History

{
config,
lib,
2024-05-25 20:28:35 -04:00
pkgs,
...
}: let
inherit (config.vars) neovimIde;
in
lib.mkIf neovimIde {
programs = {
neovim = {
withPython3 = true;
2024-05-11 20:10:45 -04:00
extraPackages = [
2024-05-25 20:28:35 -04:00
pkgs.basedpyright
];
2024-05-11 20:10:45 -04:00
extraLuaConfig =
2024-06-09 22:49:30 -04:00
# lua
2024-05-11 20:10:45 -04:00
''
require('lspconfig').basedpyright.setup(
require('coq').lsp_ensure_capabilities({}));
'';
};
};
}