9 lines
		
	
	
		
			230 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			230 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/zsh
 | 
						|
 | 
						|
neovim_dir=$HOME/bin/neovim
 | 
						|
git clone -b v0.10.3 https://github.com/neovim/neovim.git $neovim_dir
 | 
						|
brew install cmake gettext lua5.1 liblua5.1-0-dev
 | 
						|
cd $neovim_dir
 | 
						|
make CMAKE_BUILD_TYPE=RelWithDebInfo
 | 
						|
sudo make install
 |