Files
nixos-config/profiles/base/home-manager/neovim/plugins/treesitter.nix
Christoph Schmatzler f6a33f03ad up
2025-08-07 12:55:44 +02:00

19 lines
326 B
Nix

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