Skip to content

Commit

Permalink
✨ (plugin): showkeys
Browse files Browse the repository at this point in the history
  • Loading branch information
elythh committed Jan 6, 2025
1 parent fb7eecc commit 6586c22
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions config/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
./plug/utils/helm.nix
./plug/utils/markview.nix
./plug/utils/obsidian.nix
./plug/utils/showkeys.nix
./plug/utils/spectre.nix
./plug/utils/trunk.nix
./plug/utils/ufo.nix
Expand Down
19 changes: 19 additions & 0 deletions config/plug/utils/showkeys.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{ pkgs, ... }:
let

pname = "showkeys";
version = "v0.1";
in
{
extraPlugins = with pkgs.vimUtils; [
(buildVimPlugin {
inherit pname version;
src = pkgs.fetchFromGitHub {
owner = "nvzone";
repo = "showkeys";
rev = "891f95ef94ac80bc7690a0df09c6112b4b822cac";
hash = "sha256-a4ZMn3dmLLjuh1V6ASIN6uWWB9XRtjnoqj+2L8AIZys=";
};
})
];
}

0 comments on commit 6586c22

Please sign in to comment.