2024-04-26 10:47:59 +02:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib;
|
|
|
|
# This plugin has no configuration, so we use `mkVimPlugin` without the `globalPrefix` argument to
|
|
|
|
# avoid the creation of the `settings` option.
|
2024-12-22 09:58:27 +00:00
|
|
|
lib.nixvim.plugins.mkVimPlugin {
|
2024-04-26 10:47:59 +02:00
|
|
|
name = "texpresso";
|
2024-12-13 08:27:14 -06:00
|
|
|
packPathName = "texpresso.vim";
|
2024-09-02 14:05:11 +01:00
|
|
|
package = "texpresso-vim";
|
2024-04-26 10:47:59 +02:00
|
|
|
|
|
|
|
maintainers = [ maintainers.nickhu ];
|
|
|
|
|
2025-04-07 17:18:17 +02:00
|
|
|
imports = [
|
|
|
|
# TODO: added 2025-04-07, remove after 25.05
|
|
|
|
(lib.nixvim.mkRemovedPackageOptionModule {
|
|
|
|
plugin = "texpresso";
|
|
|
|
packageName = "texpresso";
|
|
|
|
})
|
|
|
|
];
|
2024-04-26 10:47:59 +02:00
|
|
|
|
2025-04-07 17:18:17 +02:00
|
|
|
extraConfig = {
|
|
|
|
dependencies.texpresso.enable = lib.mkDefault true;
|
|
|
|
};
|
2024-04-26 10:47:59 +02:00
|
|
|
}
|