feat(plugins): add screenkey

This commit is contained in:
Nicolas Goudry 2024-06-16 00:06:27 +02:00
parent 39bfc42f58
commit 281069d97e
No known key found for this signature in database
GPG key ID: 5FC434D9FFD1DF44
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,10 @@
# homepage: https://github.com/NStefan002/screenkey.nvim
{ lib, pkgs, ... }:
{
extra = {
packages = [
(import ./package.nix { inherit lib pkgs; })
];
};
}

View file

@ -0,0 +1,17 @@
{ pkgs, ... }:
let
version = "2.1.0";
in
pkgs.vimUtils.buildVimPlugin {
inherit version;
name = "screenkey.nvim";
src = pkgs.fetchFromGitHub {
owner = "NStefan002";
repo = "screenkey.nvim";
rev = "v${version}";
hash = "sha256-kdZ5GMFyKbzHEn/Bm4r76vauPillvbKJX7yI8MJxGEo=";
};
}