18 lines
234 B
Nix
18 lines
234 B
Nix
{ lib
|
|
, nvim-treesitter
|
|
, ...
|
|
}:
|
|
|
|
|
|
let
|
|
inherit (builtins) readFile;
|
|
|
|
nvimTreesitterWithGrammars = nvim-treesitter.withAllGrammars;
|
|
in
|
|
{
|
|
luaConfig = readFile ./treesitter.lua;
|
|
|
|
plugins = [
|
|
nvimTreesitterWithGrammars
|
|
];
|
|
}
|