Files
nixos-config/modules/home/neovim/plugins/treesitter.nix
Christoph Schmatzler c5f2af61a6 qup
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-09-02 12:59:18 +00:00

22 lines
364 B
Nix

{pkgs, ...}: {
programs.nixvim.plugins.treesitter = {
enable = true;
settings = {
highlight.enable = true;
indent.enable = true;
};
grammarPackages = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [
bash
elixir
fish
heex
json
nix
toml
typescript
vue
yaml
];
};
}