This repository has been archived on 2024-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
neovim/plugins/syntax/default.nix

19 lines
234 B
Nix

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