NixConfig/modules/nix/nvim/treesitter.nix
fqbn207 2f0d7ed2c6 kekl
2025-01-14 23:13:46 +01:00

32 lines
445 B
Nix

{
config,
pkgs,
nixvim,
...
}:
{
programs.nixvim = {
plugins = {
treesitter = {
enable = true;
grammarPackages = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [
c
cpp
rust
bash
json
lua
make
markdown
nix
toml
vim
vimdoc
xml
yaml
];
};
};
};
}