16 lines
		
	
	
	
		
			271 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			271 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   vim.projects = {
 | |
|     project-nvim = {
 | |
|       enable = true;
 | |
|       setupOpts = {
 | |
|         manualMode = false;
 | |
|         detectionMethods = ["lsp" "pattern"];
 | |
|         patterns = [
 | |
|           ".git"
 | |
|           "index.*"
 | |
|           "flake.nix"
 | |
|         ];
 | |
|       };
 | |
|     };
 | |
|   };
 | |
| }
 |