mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-19 00:39:42 +01:00
13 lines
347 B
Nix
13 lines
347 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "dial";
|
|
packPathName = "dial.nvim";
|
|
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;
|
|
}
|