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