feat(plugins): add resession
This commit is contained in:
parent
07ec1f7cd3
commit
08aee7c9e0
2 changed files with 117 additions and 0 deletions
17
plugins/resession/package.nix
Normal file
17
plugins/resession/package.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
version = "1.2.1";
|
||||
in
|
||||
pkgs.vimUtils.buildVimPlugin {
|
||||
inherit version;
|
||||
|
||||
name = "resession-nvim";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "stevearc";
|
||||
repo = "resession.nvim";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-GXKDuKDMcfl1SHTTdUFdWuWbtq6TDtk0GsyI3fAc1vE=";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue