mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
13 lines
280 B
Nix
13 lines
280 B
Nix
|
{ lib, ... }:
|
||
|
lib.nixvim.plugins.mkNeovimPlugin {
|
||
|
name = "dial";
|
||
|
packPathName = "dial.nvim";
|
||
|
package = "dial-nvim";
|
||
|
|
||
|
maintainers = [ lib.maintainers.GaetanLepage ];
|
||
|
|
||
|
# This plugin does not have a conventional setup function
|
||
|
hasSettings = false;
|
||
|
callSetup = false;
|
||
|
}
|