feat(plugins/precognition): patch toggle to return state
This commit is contained in:
parent
03dca50006
commit
dd3db0f108
3 changed files with 17 additions and 1 deletions
21
plugins/precognition/package/default.nix
Normal file
21
plugins/precognition/package/default.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
version = "1.0.0";
|
||||
in
|
||||
pkgs.vimUtils.buildVimPlugin {
|
||||
inherit version;
|
||||
|
||||
name = "precognition";
|
||||
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "tris203";
|
||||
repo = "precognition.nvim";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-AqWYV/59ugKyOWALOCdycWVm0bZ7qb981xnuw/mAVzM=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
./init.lua.patch
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue