Remove Plug from install.sh
This commit is contained in:
parent
6f401e72ab
commit
d5bda8002c
|
@ -1,10 +1,15 @@
|
||||||
#! /usr/bin/env sh
|
#! /usr/bin/env sh
|
||||||
|
|
||||||
|
# Install Packer
|
||||||
git clone --depth 1 https://github.com/wbthomason/packer.nvim\
|
git clone --depth 1 https://github.com/wbthomason/packer.nvim\
|
||||||
$HOME/.local/share/nvim/site/pack/packer/start/packer.nvim
|
$HOME/.local/share/nvim/site/pack/packer/start/packer.nvim
|
||||||
|
|
||||||
|
# Link config directories
|
||||||
mkdir -p $HOME/.config/nvim/
|
mkdir -p $HOME/.config/nvim/
|
||||||
ln -s $(readlink -f init.lua) $HOME/.config/nvim/init.lua
|
ln -s $(readlink -f init.lua) $HOME/.config/nvim/init.lua
|
||||||
ln -s $(readlink -f lua) $HOME/.config/nvim/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 virtualenv neovim3 # Assumes working pyenv
|
||||||
pyenv activate neovim3
|
pyenv activate neovim3
|
||||||
pip install -U pip setuptools wheel
|
pip install -U pip setuptools wheel
|
||||||
|
|
Loading…
Reference in a new issue