14 lines
200 B
Nix
14 lines
200 B
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
...
|
||
|
}: {
|
||
|
output.plugins =
|
||
|
if config.isDesktop
|
||
|
then with pkgs.vimPlugins; [vimtex]
|
||
|
else [];
|
||
|
lspconfigPath = with pkgs; [
|
||
|
texlive.combined.scheme-medium
|
||
|
];
|
||
|
}
|