mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-16 23:42:47 +01:00
12 lines
317 B
Nix
12 lines
317 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "dial";
|
|
package = "dial-nvim";
|
|
description = "Extended increment/decrement plugin for Neovim.";
|
|
|
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
|
|
|
# This plugin does not have a conventional setup function
|
|
hasSettings = false;
|
|
callSetup = false;
|
|
}
|