NixConfig/modules/nix/nvim/treesitter.nix
fqbn207 539d0b2673 kekl
2025-01-02 19:16:36 +01:00

35 lines
506 B
Nix

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