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/rust

View file

@ -0,0 +1,16 @@
{
mkShell,
cargo,
rustc,
rust-analyzer,
rustfmt,
...
}:
mkShell {
packages = [
cargo
rustc
rust-analyzer
rustfmt
];
}