16 lines
285 B
Nix
16 lines
285 B
Nix
{ nvim-tree-lua
|
|
, telescope-nvim
|
|
, telescope-live-grep-args-nvim
|
|
, ...
|
|
}:
|
|
|
|
let
|
|
inherit (builtins) readFile;
|
|
in
|
|
{
|
|
luaConfig = (readFile ./nvim-tree.lua)
|
|
+ (readFile ./telescope-nvim.lua);
|
|
|
|
plugins = [ nvim-tree-lua ]
|
|
++ [ telescope-nvim telescope-live-grep-args-nvim ];
|
|
}
|