This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/os/arch_linux/neovim.bash

18 lines
377 B
Bash
Raw Normal View History

2016-01-06 11:55:04 -06:00
#!/usr/bin/env bash
DIR=$(cd "$(dirname "${BASH_SOURCE[0]}" )/.." && pwd)
source "$DIR/variables.bash"
sudo pacman -S cmake vim unzip python2 python2-pip python python-pip xsel xclip --noconfirm
sudo pip3 install neovim
sudo pip2 install neovim
git clone https://github.com/neovim/neovim "$REPOSITORY_PATH/neovim"
cd "$REPOSITORY_PATH/neovim"
make
sudo make install
cd -