Fix error on Windows when space in install path (#64)
This commit is contained in:
		
							parent
							
								
									f218bcd6fe
								
							
						
					
					
						commit
						99df0d8f66
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		
							
								
								
									
										2
									
								
								init.lua
									
										
									
									
									
								
							
							
						
						
									
										2
									
								
								init.lua
									
										
									
									
									
								
							|  | @ -3,7 +3,7 @@ local install_path = vim.fn.stdpath 'data' .. '/site/pack/packer/start/packer.nv | ||||||
| local is_bootstrap = false | local is_bootstrap = false | ||||||
| if vim.fn.empty(vim.fn.glob(install_path)) > 0 then | if vim.fn.empty(vim.fn.glob(install_path)) > 0 then | ||||||
|   is_bootstrap = true |   is_bootstrap = true | ||||||
|   vim.fn.execute('!git clone https://github.com/wbthomason/packer.nvim ' .. install_path) |   vim.fn.system({'git', 'clone', '--depth', '1', 'https://github.com/wbthomason/packer.nvim', install_path}) | ||||||
|   vim.cmd [[packadd packer.nvim]] |   vim.cmd [[packadd packer.nvim]] | ||||||
| end | end | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Debashis Biswas
						Debashis Biswas