19 lines
		
	
	
	
		
			278 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			278 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   imports = [
 | |
|     ./nix.nix
 | |
|     ./lsp.nix
 | |
|     ./bash.nix
 | |
|     ./treesitter.nix
 | |
|     ./html.nix
 | |
|     ./ts.nix
 | |
|   ];
 | |
| 
 | |
|   vim.languages = {
 | |
|     enableLSP = true;
 | |
|     enableTreesitter = true;
 | |
|     enableFormat = true;
 | |
|     enableExtraDiagnostics = true;
 | |
| 
 | |
|     typst.enable = true;
 | |
|   };
 | |
| }
 |