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

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

View file

@ -0,0 +1,16 @@
{
mkShell,
pandoc,
texlab,
texliveFull,
rubber,
...
}:
mkShell {
packages = [
pandoc
texlab
texliveFull
rubber
];
}