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/vim/arch_setup.bash

18 lines
377 B
Bash
Executable File

#!/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 -