Fix windows env path separator
Fix: mason installed binaries path appended to env.PATH when os is windows, the env path separator is ";".
This commit is contained in:
		
							parent
							
								
									a522cebca8
								
							
						
					
					
						commit
						8eb56b6644
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -1,5 +1,6 @@
 | 
			
		|||
-- add binaries installed by mason.nvim to path
 | 
			
		||||
vim.env.PATH = vim.env.PATH .. ":" .. vim.fn.stdpath "data" .. "/mason/bin"
 | 
			
		||||
local is_windows = vim.loop.os_uname().sysname == "Windows_NT"
 | 
			
		||||
vim.env.PATH = vim.env.PATH .. (is_windows and ";" or ":") .. vim.fn.stdpath "data" .. "/mason/bin"
 | 
			
		||||
 | 
			
		||||
-- commands
 | 
			
		||||
vim.cmd "silent! command! NvChadUpdate lua require('nvchad').update_nvchad()"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue