mirror of
https://github.com/nix-community/nixvim.git
synced 2025-11-29 13:41:04 +01:00
14 lines
287 B
Nix
14 lines
287 B
Nix
{
|
|
lib,
|
|
helpers,
|
|
...
|
|
}:
|
|
with lib;
|
|
lib.nixvim.plugins.mkVimPlugin {
|
|
name = "wakatime";
|
|
packPathName = "vim-wakatime";
|
|
package = "vim-wakatime";
|
|
description = "Vim plugin for WakaTime, a time tracking service for developers.";
|
|
|
|
maintainers = [ maintainers.GaetanLepage ];
|
|
}
|