mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 03:21:14 +00:00
18 lines
403 B
Nix
18 lines
403 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; {
|
|
options.vim.utility.vim-wakatime = {
|
|
enable = mkEnableOption "vim-wakatime: live code statistics";
|
|
|
|
cli-package = mkOption {
|
|
type = with types; nullOr package;
|
|
default = pkgs.wakatime;
|
|
description = "The package that should be used for wakatime-cli. Set as null to use the default path in `$XDG_DATA_HOME`";
|
|
};
|
|
};
|
|
}
|