wip(plugins): add more plugins

This commit is contained in:
Nicolas Goudry 2024-06-17 00:59:57 +02:00
parent 8184b712ca
commit 1ff2f4e929
No known key found for this signature in database
GPG key ID: 5FC434D9FFD1DF44
3 changed files with 359 additions and 0 deletions

10
plugins/wakatime.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
{
extra = {
packages = [ pkgs.vimPlugins.vim-wakatime ];
# TODO: auto-configure API key from sops
# (not sure if this is possible though)
#config = "";
};
}