11 lines
		
	
	
	
		
			188 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			188 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{pkgs, ...}: {
 | 
						|
  vim.treesitter = {
 | 
						|
    enable = true;
 | 
						|
    fold = true;
 | 
						|
    grammars = with pkgs.vimPlugins.nvim-treesitter.builtGrammars; [
 | 
						|
      kdl
 | 
						|
      regex
 | 
						|
      fish
 | 
						|
    ];
 | 
						|
  };
 | 
						|
}
 |