feat: provide wakatime-cli package option

This commit is contained in:
NotAShelf 2023-05-11 16:21:52 +03:00
commit 50c2e91626
No known key found for this signature in database
GPG key ID: 05A3BD53FEB32B81
2 changed files with 19 additions and 1 deletions

View file

@ -12,5 +12,13 @@ in {
vim.startPlugins = [
pkgs.vimPlugins.vim-wakatime
];
vim.configRC.vim-wakatime = nvim.dag.entryAnywhere ''
${
if cfg.cli-package == null
then ""
else ''let g:wakatime_CLIPath = "${cfg.cli-package}"''
}
'';
};
}