dotfiles/nvim/install.sh
2020-09-17 10:40:17 +00:00

23 lines
409 B
Bash
Executable File

#!/bin/bash
DIR=$(readlink -f $(dirname $0))
. $DIR/../env.sh
# check dependencies
! which yarnpkg && $ROOT/nodejs/install.sh
# install nvim
case "$PM" in
apt)
sudo add-apt-repository ppa:neovim-ppa/stable -y
sudo apt update
sudo apt install -y neovim
;;
pacman)
sudo pacman -S neovim
;;
esac
# symlink configuration
lnsf $DIR/config ~/.config/nvim