Files
nixos-config/profiles/neovim/plugins/treesitter.nix
2025-12-11 20:49:12 +00:00

23 lines
328 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
markdown
nix
toml
tsx
typescript
yaml
];
};
}