nix-community.nixvim/plugins/by-name/texpresso/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
599 B
Nix
Raw Normal View History

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";
packPathName = "texpresso.vim";
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
}