lazy load nvim-cmp if snippets are disabled
This commit is contained in:
		
							parent
							
								
									2a02054a39
								
							
						
					
					
						commit
						0349de6d10
					
				
					 1 changed files with 4 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -131,10 +131,13 @@ return packer.startup(function()
 | 
			
		|||
      disable = not (plugin_settings.status.cmp and plugin_settings.status.snippets),
 | 
			
		||||
      event = "InsertEnter",
 | 
			
		||||
   }
 | 
			
		||||
 | 
			
		||||
   
 | 
			
		||||
  -- cmp by default loads after friendly snippets 
 | 
			
		||||
  -- if snippets are disabled -> cmp loads on insertEnter!
 | 
			
		||||
   use {
 | 
			
		||||
      "hrsh7th/nvim-cmp",
 | 
			
		||||
      disable = not plugin_settings.status.cmp,
 | 
			
		||||
      event = plugin_settings.status.snippets and 'InsertEnter',
 | 
			
		||||
      after = plugin_settings.status.snippets and "friendly-snippets",
 | 
			
		||||
      config = override_req("nvim_cmp", "plugins.configs.cmp", "setup"),
 | 
			
		||||
   }
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue