feat(plugins/precognition): patch toggle to return state

This commit is contained in:
Nicolas Goudry 2024-06-16 15:02:42 +02:00
parent 03dca50006
commit dd3db0f108
No known key found for this signature in database
GPG key ID: 5FC434D9FFD1DF44
3 changed files with 17 additions and 1 deletions

View file

@ -1,17 +0,0 @@
{ 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=";
};
}