mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-07 15:54:31 +02:00
Some checks are pending
Publish every Git push to main to FlakeHub / flakehub-publish (push) Waiting to run
Publish every git push to Flakestry / publish-flake (push) Waiting to run
Documentation / Version info (push) Waiting to run
Documentation / Build (push) Blocked by required conditions
Documentation / Combine builds (push) Blocked by required conditions
Documentation / Deploy (push) Blocked by required conditions
25 lines
600 B
Nix
25 lines
600 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";
|
|
description = "Neovim mode for TeXpresso.";
|
|
|
|
maintainers = [ maintainers.nickhu ];
|
|
|
|
dependencies = [ "texpresso" ];
|
|
|
|
imports = [
|
|
# TODO: added 2025-04-07, remove after 25.05
|
|
(lib.nixvim.mkRemovedPackageOptionModule {
|
|
plugin = "texpresso";
|
|
packageName = "texpresso";
|
|
})
|
|
];
|
|
}
|