mirror of
https://github.com/nix-community/nixvim.git
synced 2025-12-09 18:41:07 +01:00
12 lines
372 B
Nix
12 lines
372 B
Nix
{ 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";
|
|
package = "texpresso-vim";
|
|
description = "Neovim mode for TeXpresso.";
|
|
|
|
maintainers = [ lib.maintainers.nickhu ];
|
|
|
|
dependencies = [ "texpresso" ];
|
|
}
|