nix-config/pkgs/vim-plugins/vim-textobj-xmlattr.nix

16 lines
331 B
Nix
Raw Normal View History

{ pkgs, ... }:
2025-01-19 13:49:10 +00:00
with pkgs;
vimUtils.buildVimPlugin {
name = "vim-textobj-xmlattr";
2025-04-23 16:21:33 +01:00
version = "unstable-2016-06-03";
2025-01-19 13:49:10 +00:00
src = fetchFromGitHub {
owner = "whatyouhide";
repo = "vim-textobj-xmlattr";
rev = "694a297f1d75fd527e87da9769f3c6519a87ebb1";
sha256 = "+91FVP95oh00flINdltqx6qJuijYo56tHIh3J098G2Q=";
};
}