nixvim: re-add vim-textobj-xmlattr

This commit is contained in:
Oliver Davies 2025-07-29 12:18:40 +01:00
parent a218f5623c
commit f8489d5c72
4 changed files with 38 additions and 9 deletions

View file

@ -0,0 +1,17 @@
{ inputs, ... }:
{
flake.modules.nixvim.custom =
{ pkgs, ... }:
{
extraPlugins = with pkgs.vimPlugins; [
vim-textobj-user
(pkgs.vimUtils.buildVimPlugin {
src = inputs.vim-textobj-xmlattr;
pname = "vim-textobj-xmlattr";
version = "unstable";
})
];
};
}