nixos-config/modules/home-manager/nixvim/plugins/treesitter.nix
2024-07-19 14:52:30 +09:00

10 lines
121 B
Nix

{ config, pkgs, inputs, ... }:
{
programs.nixvim.plugins.treesitter = {
enable = true;
indent = true;
};
}