default.nix
1 { 2 inputs, 3 mkPlugin, 4 pkgs, 5 ... 6 }: 7 let 8 inherit (builtins) readFile; 9 in 10 mkPlugin { 11 name = "telescope"; 12 depends = [ 13 "trouble" 14 "plenary" 15 ]; 16 inputs = with pkgs; [ ripgrep ]; 17 config = readFile ./configuration.lua; 18 src = inputs.telescope; 19 }