Remove Plug from install.sh

This commit is contained in:
Evie Litherland-Smith 2022-11-01 16:02:06 +00:00
parent 6f401e72ab
commit d5bda8002c

View file

@ -1,10 +1,15 @@
#! /usr/bin/env sh
# Install Packer
git clone --depth 1 https://github.com/wbthomason/packer.nvim\
$HOME/.local/share/nvim/site/pack/packer/start/packer.nvim
# Link config directories
mkdir -p $HOME/.config/nvim/
ln -s $(readlink -f init.lua) $HOME/.config/nvim/init.lua
ln -s $(readlink -f lua) $HOME/.config/nvim/lua
vim -c PlugInstall -c PlugClean -c qa! # To install plugins for nvim defined in init.vim
# Install required python plugins into dedicated env
pyenv virtualenv neovim3 # Assumes working pyenv
pyenv activate neovim3
pip install -U pip setuptools wheel