ed: drop packages redundant with upstream langPackageDefaults

settings.lang_packages now appends to built-in defaults upstream
(nvimConfig 9a6e201), so arrow/data_table/nvimcom need not be re-listed;
only project-specific fixest stays.
This commit is contained in:
Daniel Winkler 2026-08-25 11:34:07 +10:00
commit 50bf84b974

View file

@ -58,10 +58,7 @@
r =
(with pkgs.rpkgs.rPackages; [
arrow
data_table
fixest
pkgs.nvimcom
])
++ extraRPackages;
@ -125,16 +122,10 @@
packages =
[
nv
pkgs.nushell
]
++ nvimConfig.lib.devShellPackages evalResult.config;
shellHook =
nvimConfig.lib.shellHook evalResult.config
+ ''
if [ -z "''${NO_NUSHELL:-}" ]; then
exec nu
fi
'';
nvimConfig.lib.shellHook evalResult.config;
};
});
};