feat(plugins): add screenkey
This commit is contained in:
parent
39bfc42f58
commit
281069d97e
2 changed files with 27 additions and 0 deletions
10
plugins/screenkey/default.nix
Normal file
10
plugins/screenkey/default.nix
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
# homepage: https://github.com/NStefan002/screenkey.nvim
|
||||||
|
{ lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
extra = {
|
||||||
|
packages = [
|
||||||
|
(import ./package.nix { inherit lib pkgs; })
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
17
plugins/screenkey/package.nix
Normal file
17
plugins/screenkey/package.nix
Normal 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=";
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue