21 lines
		
	
	
	
		
			387 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			387 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   plugins.lsp.enable = true;
 | |
| 
 | |
|   plugins.lsp.keymaps = {
 | |
|     diagnostic = {
 | |
|       "<leader>dl" = "setqflist";
 | |
|     };
 | |
| 
 | |
|     lspBuf = {
 | |
|       "<leader>ca" = "code_action";
 | |
|       "<leader>cr" = "rename";
 | |
|       K = "hover";
 | |
|       gD = "declaration";
 | |
|       gT = "type_definition";
 | |
|       gd = "definition";
 | |
|       gr = "references";
 | |
|     };
 | |
|   };
 | |
| 
 | |
|   plugins.lsp.servers.phpactor.enable = true;
 | |
| }
 |