1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-16 23:42:47 +01:00
nixvim/plugins/utils/wakatime.nix
Matt Sturgeon 2a054b039e
lib/vim-plugin: drop config arg
Instead, access it via an imported module
2024-09-02 10:33:50 +01:00

14 lines
232 B
Nix

{
lib,
helpers,
pkgs,
...
}:
with lib;
helpers.vim-plugin.mkVimPlugin {
name = "wakatime";
originalName = "vim-wakatime";
defaultPackage = pkgs.vimPlugins.vim-wakatime;
maintainers = [ maintainers.GaetanLepage ];
}