nvim.nix/config/plugins/utils/software-licenses.nix

14 lines
332 B
Nix
Raw Normal View History

2024-08-08 09:58:48 +08:00
{pkgs, ...}: {
extraPlugins = [
(pkgs.vimUtils.buildVimPlugin {
name = "software-licenses";
src = pkgs.fetchFromGitHub {
owner = "chip";
repo = "telescope-software-licenses.nvim";
rev = "fb5fc33";
hash = "sha256-luyCjkZSm1F6qoRpP5hHRAx4632u6JFuX2s7m2s8y60=";
};
})
];
2024-08-06 13:11:01 +08:00
}