Skip to content
Discussion options

You must be logged in to vote

I eventually figured it out. This works:

{pkgs, ...}: {
  programs.nvf.settings.vim.lazy.plugins."reactive.nvim" = {
    package = pkgs.vimUtils.buildVimPlugin {
      pname = "reactive.nvim";
      version = "master";
      src = pkgs.fetchFromGitHub {
        owner = "rasulomaroff";
        repo = "reactive.nvim";
        rev = "master";
        sha256 = "ox26LQIkNNutdh7OUMER2uveFhykgMRxvGoQ0nIRkkk=";
      };
    };
    event = ["BufEnter" "WinEnter"];
    setupModule = "reactive";
    setupOpts = {
      builtin = {
        cursorline = true;
        cursor = true;
        modemsg = true;
      };
    };
  };
}

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@xfzv
Comment options

Answer selected by xfzv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant