refactor(nvim): move packages out of config to devShells

This commit is contained in:
matt1432 2024-12-22 00:04:13 -05:00
parent 0f627107ce
commit 346077c0e0
16 changed files with 144 additions and 107 deletions
homeManagerModules/neovim/langs/csharp

View file

@ -0,0 +1,12 @@
{
mkShell,
dotnetCorePackages,
roslyn-ls,
...
}:
mkShell {
packages = [
dotnetCorePackages.sdk_9_0
roslyn-ls
];
}