mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
24 lines
554 B
Nix
24 lines
554 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
# This plugin has no configuration, so we use `mkVimPlugin` without the `globalPrefix` argument to
|
|
# avoid the creation of the `settings` option.
|
|
lib.nixvim.plugins.mkVimPlugin {
|
|
name = "texpresso";
|
|
packPathName = "texpresso.vim";
|
|
package = "texpresso-vim";
|
|
|
|
maintainers = [ maintainers.nickhu ];
|
|
|
|
dependencies = [ "texpresso" ];
|
|
|
|
imports = [
|
|
# TODO: added 2025-04-07, remove after 25.05
|
|
(lib.nixvim.mkRemovedPackageOptionModule {
|
|
plugin = "texpresso";
|
|
packageName = "texpresso";
|
|
})
|
|
];
|
|
}
|